@@ -6,48 +6,48 @@ let dynamic[x] = x one-> Time
6
6
7
7
let dynamicSet[x] = x -> Time
8
8
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 ]
11
11
}
12
12
13
13
let while = while3
14
14
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 ]
17
17
}
18
18
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 ]
21
21
}
22
22
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 ]
25
25
}
26
26
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 ]
29
29
}
30
30
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 ]
33
33
}
34
34
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 ]
37
37
}
38
38
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 ]
41
41
}
42
42
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 ]
45
45
}
46
46
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 ]
49
49
}
50
50
51
- let while0 [cond, body, t, t' ] {
52
- !cond[t] && t=t'
51
+ let while0 [cond, body, t, t2 ] {
52
+ !cond[t] && t=t2
53
53
}
0 commit comments