summaryrefslogtreecommitdiff
path: root/Test/aitest1/Linear5.bpl
blob: 199cb6f2536fb2269df8f630d8e44fc8ed229ba4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Simple test file for checking the inference of linear constraints.

var x: int;
var y: int;

procedure p()
  modifies x;
{
  A:
    assume -1 <= x;
    goto B, E;
  B:
    assume x < y;
    goto C, E;
  C:
    x := x*x;
    goto D, E;
  D:
    x := y;
    return;
  E:
    return;
}