blob: fd35c18c71a45091a4e3cb74dfd6bc562b10118e (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
class Cell {
var n : int;
}
class A {
var x : int;
predicate valid {
acc(x) && x >= 0
}
function getX(): int requires valid
{
unfolding valid in x
}
method init()
requires acc(this.*);
ensures valid;
{
x := 0;
fold valid;
}
method inc()
requires valid;
ensures valid && getX() == old(getX()) + 1;
{
unfold valid;
x := x + 1;
fold valid;
}
method dec()
requires valid && getX() > 0;
ensures valid;
{
unfold valid;
x := x - 1;
fold valid;
}
method magic() returns (c: Cell)
requires valid;
ensures valid;
{
}
}
class C {
ghost var x : int;
var y : Cell;
var z : Cell;
function getX() : int
requires valid;
{
unfolding valid in y.n - z.n
}
predicate valid {
acc(x) && acc(y) && acc(z) && acc(y.n) && acc(z.n) &&
y != null && z != null &&
y.n >= 0 && z.n >= 0 &&
y.n - z.n == x &&
x >= 0
}
method init()
requires acc(this.*);
ensures valid;
{
x := 0;
//
y := new Cell;
z := new Cell;
y.n := 0;
z.n := 0;
fold valid;
}
method inc()
requires valid;
ensures valid && getX() == old(getX()) + 1;
{
unfold valid;
x := x + 1;
//
y.n := y.n + 1;
fold valid;
}
method dec()
requires valid && getX() > 0;
ensures valid;
{
unfold valid;
x := x - 1;
//
z.n := z.n + 1;
fold valid;
}
method magic() returns (c: Cell)
requires valid;
ensures valid;
{
unfold valid;
c := y;
fold valid;
}
}
class Client {
method main()
{
// Abstract program
var a := new A;
call a.init();
call a.inc(); // problem is here
call a.inc();
call a.dec();
call ac := a.magic();
ac.n := 0;
// Concrete program
var c := new C;
call c.init();
call c.inc();
call c.inc();
call c.dec();
call cc := c.magic();
cc.n := 0;
}
}
|