summaryrefslogtreecommitdiff
path: root/test/regress/regress1/cores/issue6988-arith-sanity.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/cores/issue6988-arith-sanity.smt2')
-rw-r--r--test/regress/regress1/cores/issue6988-arith-sanity.smt218
1 files changed, 18 insertions, 0 deletions
diff --git a/test/regress/regress1/cores/issue6988-arith-sanity.smt2 b/test/regress/regress1/cores/issue6988-arith-sanity.smt2
new file mode 100644
index 000000000..622d64375
--- /dev/null
+++ b/test/regress/regress1/cores/issue6988-arith-sanity.smt2
@@ -0,0 +1,18 @@
+; COMMAND-LINE: -i -q
+; EXPECT: sat
+; EXPECT: sat
+(set-logic ANIA)
+(declare-const x Bool)
+(set-option :produce-unsat-cores true)
+(declare-fun i () Int)
+(declare-fun i5 () Int)
+(declare-fun i8 () Int)
+(assert (or x (< i5 0)))
+(push)
+(assert (and (= i8 1) (= i5 (+ 1 i)) (= i8 (+ 1 i))))
+(push)
+(check-sat)
+(pop)
+(pop)
+(assert (= i8 (* i8 3 (+ i8 1))))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback