summaryrefslogtreecommitdiff
path: root/test/regress
diff options
context:
space:
mode:
authorajreynol <andrew.j.reynolds@gmail.com>2021-04-21 12:34:11 -0500
committerajreynol <andrew.j.reynolds@gmail.com>2021-04-21 12:34:11 -0500
commit480528cba3227c09069c67dd7f3c8278e2325921 (patch)
tree2bc5b8744dd1e632c381fbd887ccac004f5f7b07 /test/regress
parentdb5b8571d97a525bf383cc17b7ac5416341bb4ba (diff)
parentae5ee4b07dc3d3c792e7fe7f382ff490dd28aca4 (diff)
Merge branch 'master' of https://github.com/CVC4/CVC4 into proof-new
Diffstat (limited to 'test/regress')
-rw-r--r--test/regress/CMakeLists.txt21
-rw-r--r--test/regress/regress1/quantifiers/pool-example.smt217
2 files changed, 28 insertions, 10 deletions
diff --git a/test/regress/CMakeLists.txt b/test/regress/CMakeLists.txt
index 8e46c5ed4..2cd3952c1 100644
--- a/test/regress/CMakeLists.txt
+++ b/test/regress/CMakeLists.txt
@@ -1806,6 +1806,7 @@ set(regress_1_tests
regress1/quantifiers/nra-interleave-inst.smt2
regress1/quantifiers/opisavailable-12.smt2
regress1/quantifiers/parametric-lists.smt2
+ regress1/quantifiers/pool-example.smt2
regress1/quantifiers/prenex-scholl-smt08_RNDPRE_RNDPRE_4_6.smt2
regress1/quantifiers/psyco-001-bv.smt2
regress1/quantifiers/psyco-107-bv.smt2
@@ -2617,10 +2618,10 @@ set(regression_disabled_tests
# Add target 'regress', builds and runs
# > regression tests of levels 0 and 1
-get_target_property(path_to_cvc4 cvc4-bin RUNTIME_OUTPUT_DIRECTORY)
+get_target_property(path_to_cvc5 cvc5-bin RUNTIME_OUTPUT_DIRECTORY)
set(run_regress_script ${CMAKE_CURRENT_LIST_DIR}/run_regression.py)
-add_custom_target(build-regress DEPENDS cvc4-bin)
+add_custom_target(build-regress DEPENDS cvc5-bin)
add_dependencies(build-tests build-regress)
add_custom_target(regress
@@ -2628,11 +2629,11 @@ add_custom_target(regress
ctest --output-on-failure -L "regress[0-2]" -j${CTEST_NTHREADS} $$ARGS
DEPENDS build-regress)
-macro(cvc4_add_regression_test level file)
+macro(cvc5_add_regression_test level file)
add_test(${file}
${run_regress_script}
${RUN_REGRESSION_ARGS}
- ${path_to_cvc4}/cvc4 ${CMAKE_CURRENT_LIST_DIR}/${file})
+ ${path_to_cvc5}/cvc5 ${CMAKE_CURRENT_LIST_DIR}/${file})
set_tests_properties(${file} PROPERTIES LABELS "regress${level}")
# For CMake 3.9.0 and newer, skipped tests do not count as a failure anymore:
@@ -2647,26 +2648,26 @@ endmacro()
if(NOT ${CMAKE_VERSION} VERSION_LESS "3.9.0")
# For CMake 3.9.0 and newer, we want the regression script to return 77 for
# skipped tests, such that we can mark them as skipped. See the
- # `cvc4_add_regression_test` macro for more details.
+ # `cvc5_add_regression_test` macro for more details.
set(RUN_REGRESSION_ARGS ${RUN_REGRESSION_ARGS} --use-skip-return-code)
endif()
foreach(file ${regress_0_tests})
- cvc4_add_regression_test(0 ${file})
+ cvc5_add_regression_test(0 ${file})
endforeach()
foreach(file ${regress_1_tests})
- cvc4_add_regression_test(1 ${file})
+ cvc5_add_regression_test(1 ${file})
endforeach()
foreach(file ${regress_2_tests})
- cvc4_add_regression_test(2 ${file})
+ cvc5_add_regression_test(2 ${file})
endforeach()
foreach(file ${regress_3_tests})
- cvc4_add_regression_test(3 ${file})
+ cvc5_add_regression_test(3 ${file})
endforeach()
foreach(file ${regress_4_tests})
- cvc4_add_regression_test(4 ${file})
+ cvc5_add_regression_test(4 ${file})
endforeach()
diff --git a/test/regress/regress1/quantifiers/pool-example.smt2 b/test/regress/regress1/quantifiers/pool-example.smt2
new file mode 100644
index 000000000..8344f5412
--- /dev/null
+++ b/test/regress/regress1/quantifiers/pool-example.smt2
@@ -0,0 +1,17 @@
+; COMMAND-LINE: --pool-inst
+; EXPECT: unsat
+(set-logic ALL)
+(declare-pool L Int ())
+
+(declare-fun P (Int) Bool)
+
+(assert (not (=
+(forall ((x Int)) (! (!
+ (P x)
+ :skolem-add-to-pool ((- x 100) L)) :pool (L) ))
+(forall ((x Int)) (! (!
+ (P (+ x 100))
+ :skolem-add-to-pool ((+ x 100) L)) :pool (L) )
+))))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback