Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cool
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hans-Peter Deifel
cool
Commits
3e5fbf7e
Commit
3e5fbf7e
authored
10 years ago
by
Thorsten Wißmann
Browse files
Options
Downloads
Patches
Plain Diff
Update helper message
parent
25fb6e92
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
makestatic.sh
+1
-1
1 addition, 1 deletion
makestatic.sh
src/coalg/coalg.ml
+9
-3
9 additions, 3 deletions
src/coalg/coalg.ml
with
10 additions
and
4 deletions
makestatic.sh
+
1
−
1
View file @
3e5fbf7e
...
@@ -6,7 +6,7 @@ die() { echo "$*" ; exit 1 ; }
...
@@ -6,7 +6,7 @@ die() { echo "$*" ; exit 1 ; }
[
-d
.git
]
||
die
"
$0
only works in the git-repository!"
[
-d
.git
]
||
die
"
$0
only works in the git-repository!"
dir
=
cool-
$(
uname
-m
)
-
$(
date
+%Y-%m-%d
)
dir
=
cool-
$(
uname
-m
)
-
$(
date
+%Y-%m-%d
-%H-%M
)
::
mkdir
-p
$dir
::
mkdir
-p
$dir
::
pushd
$dir
::
pushd
$dir
:: git
--git-dir
=
.git pull
||
:: git clone ..
.
:: git
--git-dir
=
.git pull
||
:: git clone ..
.
...
...
This diff is collapsed.
Click to expand it.
src/coalg/coalg.ml
+
9
−
3
View file @
3e5fbf7e
...
@@ -42,11 +42,17 @@ let _ = Gc.set { (Gc.get()) with Gc.minor_heap_size = 4194304; major_heap_increm
...
@@ -42,11 +42,17 @@ let _ = Gc.set { (Gc.get()) with Gc.minor_heap_size = 4194304; major_heap_increm
let
printUsage
()
=
let
printUsage
()
=
print_endline
"Usage:
\"
alc <task> <functor> [<flags>]
\"
where"
;
print_endline
"Usage:
\"
alc <task> <functor> [<flags>]
\"
where"
;
print_endline
" <task> in { sat print nnf prov (is »not.(sat ¬f)«) }"
;
print_endline
" <task> in { sat print nnf prov (is »not.(sat ¬f)«) }"
;
print_endline
" <functor> in { MultiModalK MultiModalKD CoalitionLogic GML"
;
print_endline
" <functor> in { MultiModalK (or equivalently K)"
;
print_endline
" (or: K) (or: KD) (or: CL)"
;
print_endline
" MultiModalKD (or equivalently KD)"
;
print_endline
" CoalitionLogic (or equivalently CL)"
;
print_endline
" PML"
;
print_endline
" GML"
;
print_endline
" }"
;
print_endline
" }"
;
print_endline
" or <functor> + <functor>"
;
print_endline
" where you can compose functors by:"
;
print_endline
" <functor> + <functor> (weakest precedence)"
;
print_endline
" or <functor> * <functor>"
;
print_endline
" or <functor> * <functor>"
;
print_endline
" or <functor> . <functor> (binds strongest)"
;
print_endline
" (so K+KD.CL*PML stand for (K + ((KD.CL) * PML)))"
;
print_endline
" <flags> = a list of the following items"
;
print_endline
" <flags> = a list of the following items"
;
print_endline
" --agents AGLIST"
;
print_endline
" --agents AGLIST"
;
print_endline
" expects the next argument AGLIST to be a list of integers"
;
print_endline
" expects the next argument AGLIST to be a list of integers"
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment