aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/trans.smt2
blob: b27b52a4e5035d46e75ef934759a2a6a1796c41d (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) (and (= b c) (and (= c d) (and (= c e) (and (= e f) (not (= a f))))))))
(check-sat)
(exit)