summaryrefslogtreecommitdiff
path: root/test/regress/regress0/ho/match-middle.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'test/regress/regress0/ho/match-middle.smt2')
-rw-r--r--test/regress/regress0/ho/match-middle.smt220
1 files changed, 20 insertions, 0 deletions
diff --git a/test/regress/regress0/ho/match-middle.smt2 b/test/regress/regress0/ho/match-middle.smt2
new file mode 100644
index 000000000..0485f9a6f
--- /dev/null
+++ b/test/regress/regress0/ho/match-middle.smt2
@@ -0,0 +1,20 @@
+; COMMAND-LINE: --uf-ho
+; EXPECT: unsat
+(set-logic UFLIA)
+(set-info :status unsat)
+(declare-fun f (Int Int Int) Int)
+(declare-fun h (Int Int Int) Int)
+(declare-fun g (Int Int) Int)
+(declare-fun a () Int)
+(declare-fun b () Int)
+(declare-fun c () Int)
+(declare-fun d () Int)
+
+(assert (or (= (f a) g) (= (h a) g)))
+
+(assert (= (f a b d) c))
+(assert (= (h a b d) c))
+
+(assert (forall ((x Int) (y Int)) (not (= (g x y) c))))
+
+(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback