summaryrefslogtreecommitdiff
path: root/Test/aitest0/Intervals.bpl
diff options
context:
space:
mode:
authorGravatar Rustan Leino <unknown>2014-04-08 08:31:05 -0700
committerGravatar Rustan Leino <unknown>2014-04-08 08:31:05 -0700
commit812961fd5f0cb1ca17737bebd9d09a318d38ccb6 (patch)
tree84d98104bd72072cecae8b030c36320ac3ac7e5e /Test/aitest0/Intervals.bpl
parent55bdb8b4ba8c49654fae37d74b34cbc4597c08fb (diff)
Fixed bug in abstract interpretation over reals
Diffstat (limited to 'Test/aitest0/Intervals.bpl')
-rw-r--r--Test/aitest0/Intervals.bpl14
1 files changed, 14 insertions, 0 deletions
diff --git a/Test/aitest0/Intervals.bpl b/Test/aitest0/Intervals.bpl
index 6a588bbe..c769645f 100644
--- a/Test/aitest0/Intervals.bpl
+++ b/Test/aitest0/Intervals.bpl
@@ -316,3 +316,17 @@ procedure Id17(n: int)
assert 0 <= i; // fine: SometimesId2 claims to be an identity and the use of it is int->int
}
+// real numbers
+
+procedure W0(N: real)
+{
+ var i, bf0: real;
+ i := 0.0;
+ while (i < N) {
+ bf0 := N - i;
+ i := i + 1.0;
+ // check termination:
+ assert 0.0 <= bf0;
+ assert N - i <= bf0 - 1.0;
+ }
+}