summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/issue3480.smt2
diff options
context:
space:
mode:
authorAndres Noetzli <andres.noetzli@gmail.com>2020-02-07 22:31:08 -0800
committerGitHub <noreply@github.com>2020-02-08 00:31:08 -0600
commit618282e081393683c3d986726b8601ba33310e79 (patch)
tree9a7f3a91f9d9ca28c66e2f1514e8eb6d7632a264 /test/regress/regress0/arith/issue3480.smt2
parent3f9b6b57255d38fa9bee6b66dae3b8932703135a (diff)
Make "unknown" non-critical for unsat cores check (#3728)
Diffstat (limited to 'test/regress/regress0/arith/issue3480.smt2')
-rw-r--r--test/regress/regress0/arith/issue3480.smt29
1 files changed, 9 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/issue3480.smt2 b/test/regress/regress0/arith/issue3480.smt2
new file mode 100644
index 000000000..7609ad3e7
--- /dev/null
+++ b/test/regress/regress0/arith/issue3480.smt2
@@ -0,0 +1,9 @@
+; COMMAND-LINE: --quiet
+(set-logic QF_NIA)
+(declare-fun a () Int)
+(declare-fun b () Int)
+(declare-fun c () Int)
+(assert (and (= a (- 7 (* a a))) (>= (* 9 b) 7) (>= (* a b) 45)))
+(assert (= b (* (div 7 c) (- 96 (div 45 b)))))
+(set-info :status unsat)
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback