diff options
Diffstat (limited to 'Test/z3api/boog29.bpl')
-rw-r--r-- | Test/z3api/boog29.bpl | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/Test/z3api/boog29.bpl b/Test/z3api/boog29.bpl index 035e69fd..3320e0a8 100644 --- a/Test/z3api/boog29.bpl +++ b/Test/z3api/boog29.bpl @@ -1,20 +1,20 @@ -type ref;
-
-function LIFT(x:bool) returns (int);
-axiom(forall x:bool :: {LIFT(x)} x <==> LIFT(x) != 0);
-
-procedure main ( )
-
-{
-var c: int;
-c := LIFT(false);
-assert (c==0);
-
-c := LIFT(true);
-assert (c!=0);
-/*
-c := LIFT(1==5);
-assert (c==0);
-*/
-}
-
+type ref; + +function LIFT(x:bool) returns (int); +axiom(forall x:bool :: {LIFT(x)} x <==> LIFT(x) != 0); + +procedure main ( ) + +{ +var c: int; +c := LIFT(false); +assert (c==0); + +c := LIFT(true); +assert (c!=0); +/* +c := LIFT(1==5); +assert (c==0); +*/ +} + |