diff options
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; +} + + + |