summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/issue1399.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/arith/issue1399.smt2')
-rw-r--r--test/regress/regress0/arith/issue1399.smt212
1 files changed, 12 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/issue1399.smt2 b/test/regress/regress0/arith/issue1399.smt2
new file mode 100644
index 000000000..80305260e
--- /dev/null
+++ b/test/regress/regress0/arith/issue1399.smt2
@@ -0,0 +1,12 @@
+(set-logic LIA)
+(set-info :status sat)
+
+(define-fun findIdx ((y1 Int)(y2 Int)(k1 Int)) Int (div (* (- 7) (mod y1 (- 5))) 2))
+(declare-fun x1 () Int)
+(declare-fun x2 () Int)
+(declare-fun k () Int)
+
+(assert (not (and (=> (< x1 x2) (=> (< k x1) (= (findIdx x1 x2 k) 0)))
+ (=> (< x1 x2) (=> (> k x2) (= (findIdx x1 x2 k) 2)))
+ (=> (< x1 x2) (=> (and (> k x1) (< k x2)) (= (findIdx x1 x2 k) 1))))))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback