summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/bug749-rounding.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/quantifiers/bug749-rounding.smt2')
-rw-r--r--test/regress/regress0/quantifiers/bug749-rounding.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/test/regress/regress0/quantifiers/bug749-rounding.smt2 b/test/regress/regress0/quantifiers/bug749-rounding.smt2
new file mode 100644
index 000000000..5fea8d4ff
--- /dev/null
+++ b/test/regress/regress0/quantifiers/bug749-rounding.smt2
@@ -0,0 +1,11 @@
+; COMMAND-LINE: --var-ineq-elim-quant
+; EXPECT: unknown
+(set-logic UFLIRA)
+
+(declare-fun round2 (Real) Int)
+
+(assert (forall ((x Real) (i Int)) (=> (<= x (to_real i)) (<= (round2 x) i)) ))
+(assert (forall ((x Real) (i Int)) (=> (<= (to_real i) x) (<= i (round2 x))) ))
+
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback