aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf1.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'unit-tests/uf1.smt2')
-rw-r--r--unit-tests/uf1.smt210
1 files changed, 10 insertions, 0 deletions
diff --git a/unit-tests/uf1.smt2 b/unit-tests/uf1.smt2
new file mode 100644
index 0000000..7aaea55
--- /dev/null
+++ b/unit-tests/uf1.smt2
@@ -0,0 +1,10 @@
+(set-logic QF_UF)
+(declare-sort U 0)
+(declare-fun a () U)
+(declare-fun b () U)
+(declare-fun c () U)
+(declare-fun f (U) U)
+(declare-fun p (U) Bool)
+(assert (and (= a c) (= b c) (or (not (= (f a) (f b))) (and (p a) (not (p b))))))
+(check-sat)
+(exit)