]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation4.scl
Merged changes from feature/scl to master.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / Transformation4.scl
diff --git a/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation4.scl b/bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Transformation4.scl
deleted file mode 100644 (file)
index 5a889e1..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-import "StandardLibrary"
-
-mapping relation M Integer (Integer,Integer)
-
-rule Mix where
-    @when
-    M ?a (?b, ?c)
-    ?a <= 10
-    
-    @where
-    M (?a + 1) (?c, ?b)
-
-rule PrintIt where
-    @when
-    M ?a (?b,?c)
-    
-    @to
-    Execute (print "\(?a) -> \(?b), \(?c)")
-    
-rule Seed where
-    @where
-    M 0 (1,?x)
-    M 10 (?y,2)
-
-main = transformation OneShotForward where
---
-()