summaryrefslogtreecommitdiff
path: root/float_test.bpl
blob: 22e436a11544b0e335b51fab4e94994c5004f3f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
procedure F(n: int) returns (r: int)
  ensures 100 < n ==> r == n - 10;  // This postcondition is easy to check by hand
  ensures n <= 100 ==> r == 91;     // Do you believe this one is true?
{
  if (100 < n) {
    r := n - 10;
  } else {
    call r := F(n + 11);
    call r := F(r);
  }
}