summaryrefslogtreecommitdiff
path: root/test/regress/regress2
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-11 14:53:19 -0500
committerGitHub <noreply@github.com>2020-03-11 12:53:19 -0700
commitc8c92d80d933f264aa02841ee5ebe689fc91680a (patch)
tree297dabf83dca64f16e42a9b43bcfd200cb474e3e /test/regress/regress2
parent05dc596e5b9ef9d4c45e2fa92a56ef1ec2aede76 (diff)
Switch to Nodes for conjecture generator (#4026)
Fixes #4022.
Diffstat (limited to 'test/regress/regress2')
-rw-r--r--test/regress/regress2/sygus/issue4022-conjecture-gen.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/test/regress/regress2/sygus/issue4022-conjecture-gen.smt2 b/test/regress/regress2/sygus/issue4022-conjecture-gen.smt2
new file mode 100644
index 000000000..9c3fe7ac5
--- /dev/null
+++ b/test/regress/regress2/sygus/issue4022-conjecture-gen.smt2
@@ -0,0 +1,11 @@
+(set-logic ALL)
+(set-option :conjecture-filter-model true)
+(set-option :conjecture-gen true)
+(set-option :conjecture-no-filter true)
+(set-option :dt-ref-sk-intro true)
+(set-option :quant-ind true)
+(set-option :sygus-inference true)
+(set-info :status sat)
+(declare-fun a (Int) Bool)
+(assert (exists ((b Int)) (a b)))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback