summaryrefslogtreecommitdiff
path: root/test/regress/regress0/unconstrained/arith3.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/unconstrained/arith3.smt2')
-rw-r--r--test/regress/regress0/unconstrained/arith3.smt213
1 files changed, 13 insertions, 0 deletions
diff --git a/test/regress/regress0/unconstrained/arith3.smt2 b/test/regress/regress0/unconstrained/arith3.smt2
new file mode 100644
index 000000000..83634a50a
--- /dev/null
+++ b/test/regress/regress0/unconstrained/arith3.smt2
@@ -0,0 +1,13 @@
+(set-logic QF_AUFLIRA)
+(set-info :smt-lib-version 2.0)
+(set-info :category "crafted")
+(set-info :status unsat)
+(declare-fun v1 () Int)
+(declare-fun v2 () Int)
+(declare-fun v3 () Int)
+(declare-fun v4 () Int)
+(assert (= (* v1 v2) v3))
+(assert (< v3 v4))
+(assert (> v3 (- v4 1)))
+(check-sat)
+(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback