summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/regress/regress0/quantifiers/Makefile.am4
-rw-r--r--test/regress/regress0/quantifiers/cegqi-nl-simp.cvc2
-rw-r--r--test/regress/regress0/quantifiers/cegqi-nl-sq.smt25
3 files changed, 10 insertions, 1 deletions
diff --git a/test/regress/regress0/quantifiers/Makefile.am b/test/regress/regress0/quantifiers/Makefile.am
index 1711c301e..809297863 100644
--- a/test/regress/regress0/quantifiers/Makefile.am
+++ b/test/regress/regress0/quantifiers/Makefile.am
@@ -71,7 +71,9 @@ TESTS = \
qbv-test-invert-concat-1.smt2 \
qbv-test-invert-sign-extend.smt2 \
clock-10.smt2 \
- lra-triv-gn.smt2
+ lra-triv-gn.smt2 \
+ cegqi-nl-simp.cvc \
+ cegqi-nl-sq.smt2
EXTRA_DIST = $(TESTS) \
bug291.smt2.expect
diff --git a/test/regress/regress0/quantifiers/cegqi-nl-simp.cvc b/test/regress/regress0/quantifiers/cegqi-nl-simp.cvc
new file mode 100644
index 000000000..63cf52fd6
--- /dev/null
+++ b/test/regress/regress0/quantifiers/cegqi-nl-simp.cvc
@@ -0,0 +1,2 @@
+% EXPECT: valid
+QUERY FORALL (x:INT) : EXISTS (y:INT) : (x*y=x) ;
diff --git a/test/regress/regress0/quantifiers/cegqi-nl-sq.smt2 b/test/regress/regress0/quantifiers/cegqi-nl-sq.smt2
new file mode 100644
index 000000000..703f816d5
--- /dev/null
+++ b/test/regress/regress0/quantifiers/cegqi-nl-sq.smt2
@@ -0,0 +1,5 @@
+(set-logic NIA)
+(set-info :status unsat)
+(assert (not (exists ((?X Int)) (= (* ?X ?X) ?X))))
+(check-sat)
+(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback