diff options
Diffstat (limited to 'Test/z3api/boog9.bpl')
-rw-r--r-- | Test/z3api/boog9.bpl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Test/z3api/boog9.bpl b/Test/z3api/boog9.bpl new file mode 100644 index 00000000..55897a1d --- /dev/null +++ b/Test/z3api/boog9.bpl @@ -0,0 +1,21 @@ +// types
+type Wicket;
+var favorite: Wicket;
+
+function age(w:Wicket) returns (int);
+axiom (forall v:Wicket :: age(v)==7);
+axiom (exists v:Wicket :: age(v)<8);
+
+
+// procedure
+procedure SetToSeven(p: Wicket);
+ modifies favorite
;
+
+ ensures favorite==p;
+
+implementation SetToSeven(l: Wicket) {
+ favorite:=favorite;
+}
+
+
+
|