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
a87192e8
Commit
a87192e8
authored
11 years ago
by
Thorsten Wißmann
Browse files
Options
Downloads
Patches
Plain Diff
Temp
parent
559819d7
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CoAlgLogics.ml
+10
-0
10 additions, 0 deletions
CoAlgLogics.ml
CoAlgMisc.ml
+1
-0
1 addition, 0 deletions
CoAlgMisc.ml
CoAlgMisc.mli
+1
-0
1 addition, 0 deletions
CoAlgMisc.mli
colorize.sh
+8
-0
8 additions, 0 deletions
colorize.sh
with
20 additions
and
0 deletions
CoAlgLogics.ml
+
10
−
0
View file @
a87192e8
...
...
@@ -61,6 +61,15 @@ let mkRule_MultiModalK sort bs sl =
res
:=
None
;
AllInOne
rules
let
mkRule_MultiModalKD
sort
bs
sl
=
let
rules
=
bsetFold
getRules
bs
[]
in
let
res
=
ref
(
Some
rules
)
in
fun
()
->
match
!
res
with
|
None
->
NoMoreRules
|
Some
rules
->
res
:=
None
;
AllInOne
rules
let
mkRule_Choice
sort
bs
sl
=
assert
(
List
.
length
sl
=
2
);
...
...
@@ -138,5 +147,6 @@ let mkRule_Fusion sort bs sl =
*)
let
getExpandingFunctionProducer
=
function
|
MultiModalK
->
mkRule_MultiModalK
|
MultiModalK
->
mkRule_MultiModalKD
|
Choice
->
mkRule_Choice
|
Fusion
->
mkRule_Fusion
This diff is collapsed.
Click to expand it.
CoAlgMisc.ml
+
1
−
0
View file @
a87192e8
...
...
@@ -66,6 +66,7 @@ module NHt = Hashtbl.Make(
(* This type must be extended for additional logics. *)
type
functors
=
|
MultiModalK
|
MultiModalKD
|
Choice
|
Fusion
...
...
This diff is collapsed.
Click to expand it.
CoAlgMisc.mli
+
1
−
0
View file @
a87192e8
...
...
@@ -11,6 +11,7 @@
(* This type has to be extended for additional logics. *)
type
functors
=
|
MultiModalK
|
MultiModalKD
|
Choice
|
Fusion
...
...
This diff is collapsed.
Click to expand it.
colorize.sh
0 → 100755
+
8
−
0
View file @
a87192e8
#!/bin/bash
while
read
line
;
do
echo
"
$(
tput bold
)$(
tput setaf 3
)
$line
$(
tput sgr0
)
"
done
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