diff options
author | Rustan Leino <leino@microsoft.com> | 2015-08-28 13:40:37 -0700 |
---|---|---|
committer | Rustan Leino <leino@microsoft.com> | 2015-08-28 13:40:37 -0700 |
commit | 35332e25e899424ee1714eea8d451c79563154aa (patch) | |
tree | 55cebc386a00a906c4feb130e6236f5dca6f98e8 /Test/z3api/boog8.bpl | |
parent | 21f1cfff139759d9b9f91ed800da2158daca8ed4 (diff) | |
parent | 713e870a0dd2241869685e95bf31702a4f74cfff (diff) |
Merge branch 'master' of https://github.com/boogie-org/boogie
Conflicts:
Source/Core/CommandLineOptions.cs
Source/ExecutionEngine/ExecutionEngine.cs
Source/ExecutionEngine/VerificationResultCache.cs
Source/VCGeneration/VC.cs
Test/snapshots/runtest.snapshot
Test/snapshots/runtest.snapshot.expect
Diffstat (limited to 'Test/z3api/boog8.bpl')
-rw-r--r-- | Test/z3api/boog8.bpl | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/Test/z3api/boog8.bpl b/Test/z3api/boog8.bpl index 121f27cf..f027e9f6 100644 --- a/Test/z3api/boog8.bpl +++ b/Test/z3api/boog8.bpl @@ -1,26 +1,26 @@ -type ref;
-// types
-type Wicket;
-var favorite: Wicket;
-
-
-const myBv: bv5;
-axiom myBv==1bv2++2bv3;
-
-const myBool: bool;
-axiom myBool==true;
-
-
-// procedure
-procedure SetToSeven(p: Wicket);
- modifies favorite
-;
-
- ensures favorite==p;
-
-implementation SetToSeven(l: Wicket) {
- favorite:=favorite;
-}
-
-
-
+type ref; +// types +type Wicket; +var favorite: Wicket; + + +const myBv: bv5; +axiom myBv==1bv2++2bv3; + +const myBool: bool; +axiom myBool==true; + + +// procedure +procedure SetToSeven(p: Wicket); + modifies favorite +; + + ensures favorite==p; + +implementation SetToSeven(l: Wicket) { + favorite:=favorite; +} + + + |