@@ -6,48 +6,48 @@ let dynamic[x] = x one-> Time
66
77let dynamicSet[x] = x -> Time
88
9- let then [a, b, t, t' ] {
10- some x:Time | a[t,x] && b[x,t' ]
9+ let then [a, b, t, t2 ] {
10+ some x:Time | a[t,x] && b[x,t2 ]
1111}
1212
1313let while = while3
1414
15- let while9 [cond, body, t, t' ] {
16- some x:Time | (cond[t] => body[t,x] else t=x) && while8[cond,body,x,t' ]
15+ let while9 [cond, body, t, t2 ] {
16+ some x:Time | (cond[t] => body[t,x] else t=x) && while8[cond,body,x,t2 ]
1717}
1818
19- let while8 [cond, body, t, t' ] {
20- some x:Time | (cond[t] => body[t,x] else t=x) && while7[cond,body,x,t' ]
19+ let while8 [cond, body, t, t2 ] {
20+ some x:Time | (cond[t] => body[t,x] else t=x) && while7[cond,body,x,t2 ]
2121}
2222
23- let while7 [cond, body, t, t' ] {
24- some x:Time | (cond[t] => body[t,x] else t=x) && while6[cond,body,x,t' ]
23+ let while7 [cond, body, t, t2 ] {
24+ some x:Time | (cond[t] => body[t,x] else t=x) && while6[cond,body,x,t2 ]
2525}
2626
27- let while6 [cond, body, t, t' ] {
28- some x:Time | (cond[t] => body[t,x] else t=x) && while5[cond,body,x,t' ]
27+ let while6 [cond, body, t, t2 ] {
28+ some x:Time | (cond[t] => body[t,x] else t=x) && while5[cond,body,x,t2 ]
2929}
3030
31- let while5 [cond, body, t, t' ] {
32- some x:Time | (cond[t] => body[t,x] else t=x) && while4[cond,body,x,t' ]
31+ let while5 [cond, body, t, t2 ] {
32+ some x:Time | (cond[t] => body[t,x] else t=x) && while4[cond,body,x,t2 ]
3333}
3434
35- let while4 [cond, body, t, t' ] {
36- some x:Time | (cond[t] => body[t,x] else t=x) && while3[cond,body,x,t' ]
35+ let while4 [cond, body, t, t2 ] {
36+ some x:Time | (cond[t] => body[t,x] else t=x) && while3[cond,body,x,t2 ]
3737}
3838
39- let while3 [cond, body, t, t' ] {
40- some x:Time | (cond[t] => body[t,x] else t=x) && while2[cond,body,x,t' ]
39+ let while3 [cond, body, t, t2 ] {
40+ some x:Time | (cond[t] => body[t,x] else t=x) && while2[cond,body,x,t2 ]
4141}
4242
43- let while2 [cond, body, t, t' ] {
44- some x:Time | (cond[t] => body[t,x] else t=x) && while1[cond,body,x,t' ]
43+ let while2 [cond, body, t, t2 ] {
44+ some x:Time | (cond[t] => body[t,x] else t=x) && while1[cond,body,x,t2 ]
4545}
4646
47- let while1 [cond, body, t, t' ] {
48- some x:Time | (cond[t] => body[t,x] else t=x) && while0[cond,body,x,t' ]
47+ let while1 [cond, body, t, t2 ] {
48+ some x:Time | (cond[t] => body[t,x] else t=x) && while0[cond,body,x,t2 ]
4949}
5050
51- let while0 [cond, body, t, t' ] {
52- !cond[t] && t=t'
51+ let while0 [cond, body, t, t2 ] {
52+ !cond[t] && t=t2
5353}
0 commit comments