summaryrefslogtreecommitdiff
path: root/Test/og/FlanaganQadeer.bpl
blob: 8379925f8f7a7a9e4413a8fce3191fff1beea3cb (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
type X;

const nil: X;
var l: X;
var x: int;

procedure {:entrypoint} main()
{
    var {:linear "tid"} tid: X;
    var val: int;

    while (*) 
    {
        havoc tid, val;
	assume tid != nil;
        call {:async} foo(tid, val);
    }
}

procedure foo({:linear "tid"} tid': X, val: int)
requires tid' != nil;
{
    var {:linear "tid"} tid: X;
    assume tid == tid';
    
    assume l == nil;
    l := tid;
    call tid := Yield(tid);
    x := val;
    call tid := Yield(tid);
    assert x == val;
    call tid := Yield(tid);
    l := nil;
}

procedure Yield({:linear "tid"} tid': X) returns ({:linear "tid"} tid: X)
requires tid' != nil;
ensures tid == tid';
ensures old(l) == tid ==> old(l) == l && old(x) == x;
{
    assume tid == tid';
    assert {:yield} tid != nil;
    assert (old(l) == tid ==> old(l) == l && old(x) == x);
}