diff options
Diffstat (limited to 'Test/z3api/boog1.bpl')
-rw-r--r-- | Test/z3api/boog1.bpl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Test/z3api/boog1.bpl b/Test/z3api/boog1.bpl new file mode 100644 index 00000000..6b6cce75 --- /dev/null +++ b/Test/z3api/boog1.bpl @@ -0,0 +1,16 @@ +type Wicket;
+const w: Wicket;
+var favorite: Wicket;
+
+function age(Wicket) returns (int);
+
+axiom age(w)==7;
+
+procedure NewFavorite(p: Wicket);
+ modifies favorite
;
+
+ ensures favorite==p;
+
+implementation NewFavorite(l: Wicket) {
+ favorite:=l;
+}
\ No newline at end of file |