summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-10 10:00:07 -0500
committerGitHub <noreply@github.com>2020-03-10 10:00:07 -0500
commitf57c7cb845c7d1f8730e1b3ecfa4d1c030b980ac (patch)
tree770ae2193e6f536f94e2f8a55ec9c360013c9db7 /test/regress
parente2758b664c43de299d0ba80537f09ccdda026119 (diff)
Fix real as int for incremental (#3979)
Fixes #3956 and fixes #3969.
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/CMakeLists.txt1
-rw-r--r--test/regress/regress0/push-pop/real-as-int-incremental.smt224
2 files changed, 25 insertions, 0 deletions
diff --git a/test/regress/CMakeLists.txt b/test/regress/CMakeLists.txt
index aaf340ce7..d449669a9 100644
--- a/test/regress/CMakeLists.txt
+++ b/test/regress/CMakeLists.txt
@@ -689,6 +689,7 @@ set(regress_0_tests
regress0/push-pop/issue2137.min.smt2
regress0/push-pop/issue3915-real-as-int.smt2
regress0/push-pop/quant-fun-proc-unfd.smt2
+ regress0/push-pop/real-as-int-incremental.smt2
regress0/push-pop/simple_unsat_cores.smt2
regress0/push-pop/test.00.cvc
regress0/push-pop/test.01.cvc
diff --git a/test/regress/regress0/push-pop/real-as-int-incremental.smt2 b/test/regress/regress0/push-pop/real-as-int-incremental.smt2
new file mode 100644
index 000000000..81af8c4e7
--- /dev/null
+++ b/test/regress/regress0/push-pop/real-as-int-incremental.smt2
@@ -0,0 +1,24 @@
+; COMMAND-LINE: --incremental --solve-real-as-int
+; EXPECT: sat
+; EXPECT: sat
+; EXPECT: sat
+(set-logic ALL)
+(declare-fun x () Real)
+(declare-fun y () Real)
+
+(assert (> x y))
+(assert (> x 500.5))
+
+(check-sat)
+
+(push 1)
+(declare-fun z () Real)
+(assert (> z x))
+(check-sat)
+(pop 1)
+
+(push 1)
+(declare-fun w () Real)
+(assert (> w x))
+(check-sat)
+(pop 1)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback