summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2018-11-21 16:24:16 -0600
committerAndres Noetzli <andres.noetzli@gmail.com>2018-11-21 14:24:16 -0800
commit1e7ce9dcc5268c8e13466f63ac2c4159d71a583a (patch)
treee705a65b9957960a278382d9de70681aabae5594 /test/regress/regress1
parent3072a39f6bda5a5ce0dd538e0f1a1bd1b744d122 (diff)
Quickly recognize when PBE conjectures are infeasible (#2718)
Recognizes when the conjecture has conflicting I/O pairs. Also includes a minor change to the default behavior of PBE. This change broke a delicate regression array_search_2, which I fixed by adding some additional options to make it more robust. After this PR, we immediately find 4/7 unsolved in PBE strings of sygusComp 2018 to be infeasible.
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/sygus/array_search_2.sy3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/regress/regress1/sygus/array_search_2.sy b/test/regress/regress1/sygus/array_search_2.sy
index 41346e655..93cbf9ce9 100644
--- a/test/regress/regress1/sygus/array_search_2.sy
+++ b/test/regress/regress1/sygus/array_search_2.sy
@@ -1,5 +1,6 @@
+; REQUIRES: proof
; EXPECT: unsat
-; COMMAND-LINE: --cegqi-si=all --sygus-out=status
+; COMMAND-LINE: --cegqi-si=all --sygus-out=status --cegqi-si-sol-min-core --proof
(set-logic LIA)
(synth-fun findIdx ( (y1 Int) (y2 Int) (k1 Int)) Int ((Start Int ( 0 1 2 y1 y2 k1 (ite BoolExpr Start Start))) (BoolExpr Bool ((< Start Start) (<= Start Start) (> Start Start) (>= Start Start)))))
(declare-var x1 Int)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback