summaryrefslogtreecommitdiff
path: root/Test/AbsHoudini/houd12.bpl
blob: 12727d65a9c900c1ea73903fac703dc0e937584b (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
// RUN: %boogie -noinfer -contractInfer -printAssignment -abstractHoudini:IA[ConstantProp] "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
// Example to test candidate annotations on loops

function {:existential true} Assert(): bool;
function {:existential true} b1():bool;
function {:existential true} b2():bool;
function {:existential true} b3():bool;
function {:existential true} b4():bool;
function {:existential true} b5():bool;
function {:existential true} b6():bool;
function {:existential true} b7():bool;

var x: int;
var y: int;


procedure foo() 
modifies x;
modifies y;
ensures (b4() || x == 0);
ensures (b5() || y == 10);
ensures (b6() || x == 10);
ensures (b7() || y == 11);

{
  x := 10;
  y := 0;

  goto Head;

Head: 

  //loop invariants
 assert (b1() || x < 0);
 assert (b2() || x >= 0);
 assert (b3() || x + y == 10);
 goto Body, Exit;

Body:
  assume x > 0;
  x := x - 1;
  y := y + 1;


  goto Head;

Exit:
  assume !(x > 0);
  return;
}

// expected assigment: Assert -> false, b1->true,b2->false,b3->false,b4->false, b5->false, b6->true,b7->true