summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/ho-matching-enum.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/ho/ho-matching-enum.smt2')
-rw-r--r--test/regress/regress0/ho/ho-matching-enum.smt219
1 files changed, 19 insertions, 0 deletions
diff --git a/test/regress/regress0/ho/ho-matching-enum.smt2 b/test/regress/regress0/ho/ho-matching-enum.smt2
new file mode 100644
index 000000000..bd1d2837f
--- /dev/null
+++ b/test/regress/regress0/ho/ho-matching-enum.smt2
@@ -0,0 +1,19 @@
+; COMMAND-LINE: --uf-ho
+; EXPECT: unsat
+(set-logic ALL)
+(set-info :status unsat)
+
+(declare-sort U 0)
+
+(declare-fun p (Int) Bool)
+(declare-fun q (Int) Bool)
+(declare-fun k (Int Int) Int)
+
+(assert (q (k 0 1)))
+(assert (not (p (k 0 0))))
+
+(assert (forall ((f (-> Int Int Int)) (y Int) (z Int)) (or (p (f y z)) (not (q (f 1 y))))))
+;solved by instantiating with {f->\lambda w1w2. (k 0 w1), y-> 0, z-> _ }
+
+(check-sat)
+(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback