aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf5.smt2
blob: c151654a3b4ca2971469466fbddd3d96001c1049 (plain)
1
2
3
4
5
6
7
8
9
10
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) (= b c) (= c d) (= c e) (= e f) (not (= a f))))
(check-sat)
(exit)