summaryrefslogtreecommitdiff
path: root/test/regress/regress1
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2020-03-12 14:42:45 -0500
committerGitHub <noreply@github.com>2020-03-12 14:42:45 -0500
commit9803bedfdfe42bf472654ed8e11bcc888de5df67 (patch)
tree606a8ab6c334656d3268426521a8724e0101483d /test/regress/regress1
parent83a18f98dddbd635db3823dd18b7bdf22b020869 (diff)
Do not make models for quantified function variables (#4039)
If we combine finite model finding and higher-order, then we could try to find a model find operators whose kind was BOUND_VARIABLE.
Diffstat (limited to 'test/regress/regress1')
-rw-r--r--test/regress/regress1/sygus/issue3995-fmf-var-op.smt26
1 files changed, 6 insertions, 0 deletions
diff --git a/test/regress/regress1/sygus/issue3995-fmf-var-op.smt2 b/test/regress/regress1/sygus/issue3995-fmf-var-op.smt2
new file mode 100644
index 000000000..72ece4064
--- /dev/null
+++ b/test/regress/regress1/sygus/issue3995-fmf-var-op.smt2
@@ -0,0 +1,6 @@
+; EXPECT: unsat
+; COMMAND-LINE: --sygus-inference --fmf-bound --uf-ho --no-bv-div-zero-const
+(set-logic ALL)
+(declare-fun a () (_ BitVec 1))
+(assert (bvsgt (bvsmod a a) #b0))
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback