aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/uf5.smt2
diff options
context:
space:
mode:
Diffstat (limited to 'src/lfsc/tests/uf5.smt2')
-rw-r--r--src/lfsc/tests/uf5.smt211
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lfsc/tests/uf5.smt2 b/src/lfsc/tests/uf5.smt2
new file mode 100644
index 0000000..b27b52a
--- /dev/null
+++ b/src/lfsc/tests/uf5.smt2
@@ -0,0 +1,11 @@
+(set-logic QF_UF)
+(declare-sort U 0)
+(declare-fun a () U)
+(declare-fun b () U)
+(declare-fun c () U)
+(declare-fun d () U)
+(declare-fun e () U)
+(declare-fun f () U)
+(assert (and (= a b) (and (= b c) (and (= c d) (and (= c e) (and (= e f) (not (= a f))))))))
+(check-sat)
+(exit)