We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1cb0f7 commit d8d34aaCopy full SHA for d8d34aa
2 files changed
tests/incremental/test7/README
@@ -0,0 +1,7 @@
1
+Command line:
2
+./KaSaIncremental --current-chapter simple_example.ka --do-restart-fixpoint-iterations
3
+
4
+On prompt:
5
+disable 0
6
+enable 0
7
+disable 1
tests/incremental/test7/simple_example.ka
@@ -0,0 +1,14 @@
+// define agents
+%agent: A(a{u p}, x, y)
+%agent: B(b{u p})
+%agent: C(c{u p})
+%agent: D(d{u p})
+// initial states
8
+%init: 100 D(d{u})
9
+%init: 100 B(b{u})
10
11
+// rules
12
+'create.A.if.D' D(),. -> D(),A(a{u}) @ 1
13
+'bind.A_A' A(x[.]), A(y[.]) -> A(x[1]), A(y[1]) @ 3
14
+'state.A.p' A(x[_], a{u}) -> A(x[_], a{p}) @ 1
0 commit comments