blob: 5f0b30bf9e1fb81126f7e9f145863a36fb3acf2f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory %s > %t
// RUN: %diff %s.expect %t
var {:phase 1} a:[int]int;
procedure Allocate() returns ({:linear "tid"} xls: int);
function {:builtin "MapConst"} MapConstBool(bool) : [int]bool;
function {:inline} {:linear "tid"} TidCollector(x: int) : [int]bool
{
MapConstBool(false)[x := true]
}
procedure {:yields} {:phase 0,1} Write(idx: int, val: int);
ensures {:atomic} |{A: a[idx] := val; return true; }|;
procedure {:yields} {:phase 1} main()
{
var {:linear "tid"} i: int;
var {:linear "tid"} j: int;
call i := Allocate();
call j := Allocate();
par i := t(i) | Yield(j);
par i := u(i) | j := u(j);
}
procedure {:yields} {:phase 1} t({:linear "tid"} i': int) returns ({:linear "tid"} i: int)
{
i := i';
yield;
call Write(i, 42);
call Yield(i);
assert {:phase 1} a[i] == 42;
}
procedure {:yields} {:phase 1} u({:linear "tid"} i': int) returns ({:linear "tid"} i: int)
{
i := i';
yield;
call Write(i, 42);
yield;
assert {:phase 1} a[i] == 42;
}
procedure {:yields} {:phase 1} Yield({:cnst "tid"} i: int)
ensures {:phase 1} old(a)[i] == a[i];
{
yield;
assert {:phase 1} old(a)[i] == a[i];
}
|