From ce1c2de044c91624370411e23acab13b0381949b Mon Sep 17 00:00:00 2001 From: mikebarnett Date: Wed, 15 Jul 2009 21:03:41 +0000 Subject: Initial set of files. --- Test/z3api/boog21.bpl | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Test/z3api/boog21.bpl (limited to 'Test/z3api/boog21.bpl') diff --git a/Test/z3api/boog21.bpl b/Test/z3api/boog21.bpl new file mode 100644 index 00000000..1f4fa6dc --- /dev/null +++ b/Test/z3api/boog21.bpl @@ -0,0 +1,17 @@ + +function PLUS(int, int, int) returns (int); +function Rep(int,int) returns (int); + + +// ERROR + +axiom(forall a:int, b:int, z:int :: Rep(a,b) == PLUS(a,b,z )); +axiom(forall n:int, x:int :: {Rep(n,x)} (exists k:int :: Rep(n,x) == x)); +// END ERROR + + +procedure main ( ) +{ +assert (PLUS(0, 4, 55)!=0); +} + -- cgit v1.2.3