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/boog6.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/boog6.bpl')
-rw-r--r-- | Test/z3api/boog6.bpl | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/Test/z3api/boog6.bpl b/Test/z3api/boog6.bpl index f6c3c23f..05a63440 100644 --- a/Test/z3api/boog6.bpl +++ b/Test/z3api/boog6.bpl @@ -1,24 +1,24 @@ -type ref;
-// types
-type Wicket;
-
-// consts
-var favorite: Wicket;
-
-// axioms
-const b: bool;
-axiom b==true;
-
-// procedure
-procedure SetToSeven(p: Wicket);
- modifies favorite
-;
-
- ensures favorite==p;
-
-implementation SetToSeven(l: Wicket) {
- favorite:=l;
-}
-
-
-
+type ref; +// types +type Wicket; + +// consts +var favorite: Wicket; + +// axioms +const b: bool; +axiom b==true; + +// procedure +procedure SetToSeven(p: Wicket); + modifies favorite +; + + ensures favorite==p; + +implementation SetToSeven(l: Wicket) { + favorite:=l; +} + + + |