summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arith/mod.01.smt2
diff options
context:
space:
mode:
authorTim King <taking@cs.nyu.edu>2012-11-07 19:43:34 +0000
committerTim King <taking@cs.nyu.edu>2012-11-07 19:43:34 +0000
commitc3c4a6fc6062e17bf92a5657c168034a33cf94b8 (patch)
tree3a1a0048acb2a9693189de04a0ef41a84043f4a3 /test/regress/regress0/arith/mod.01.smt2
parent5b3788f06a843c8f34dc5d4f7b4bf636d82bba22 (diff)
Fix to a bug in integer mod lemmas.
Diffstat (limited to 'test/regress/regress0/arith/mod.01.smt2')
-rw-r--r--test/regress/regress0/arith/mod.01.smt210
1 files changed, 10 insertions, 0 deletions
diff --git a/test/regress/regress0/arith/mod.01.smt2 b/test/regress/regress0/arith/mod.01.smt2
new file mode 100644
index 000000000..2e3f1d834
--- /dev/null
+++ b/test/regress/regress0/arith/mod.01.smt2
@@ -0,0 +1,10 @@
+(set-logic QF_NIA)
+(set-info :smt-lib-version 2.0)
+(set-info :status unknown)
+(declare-fun n () Int)
+(declare-fun x () Int)
+
+(assert (>= n 1))
+(assert (< (mod x n) n))
+
+(check-sat) \ No newline at end of file
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback