]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.runtime/scl/TestCHR.scl
(refs #7250) Refactoring CHR implementation
[simantics/platform.git] / bundles / org.simantics.scl.runtime / scl / TestCHR.scl
1 import "StandardLibrary"
2
3 topologicalSort :: Show a => [(a,a)] -> <Proc> [a]
4 topologicalSort dependencies = MList.freeze answer
5   where
6     answer = MList.create ()
7     
8     (?x,?y) <- dependencies           =>  print "RULE 1, x=\(?x), y=\(?y)", Dep ?x ?y, InDegree ?x 0, InDegree ?y 1
9     InDegree ?x ?a                    =>  print "pre InDegree \(?x) \(?a)"    
10     -InDegree ?x ?a, -InDegree ?x ?b  =>  print "RULE 2, x=\(?x), a=\(?a), b=\(?b)", InDegree ?x (?a + ?b)
11     InDegree ?x ?a                    =>  print "InDegree \(?x) \(?a)"
12     InDegree ?x 0                     =>  print "RULE 3, x=\(?x)", AdjustInDegrees ?x, MList.add answer ?x
13     AdjustInDegrees ?x, Dep ?x ?y     =>  print "RULE 4, x=\(?x), y=\(?y)", InDegree ?y (-1)
14     
15 main = topologicalSort [(2,4),(3,7),(7,2),(1,3)]