summaryrefslogtreecommitdiff
path: root/test/regress/regress1/arith/mod.03.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress1/arith/mod.03.smt2')
-rw-r--r--test/regress/regress1/arith/mod.03.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/test/regress/regress1/arith/mod.03.smt2 b/test/regress/regress1/arith/mod.03.smt2
new file mode 100644
index 000000000..8a6ac51d7
--- /dev/null
+++ b/test/regress/regress1/arith/mod.03.smt2
@@ -0,0 +1,11 @@
+; EXPECT: sat
+(set-logic QF_NIA)
+(set-info :smt-lib-version 2.0)
+(set-info :status sat)
+(declare-fun n () Int)
+(declare-fun x () Int)
+
+(assert (< (mod x n) 0))
+(assert (< (div x n) 0))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback