aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf4.smt2
blob: ec27526afa497b043bfa44960a359cba02c859a6 (plain)
1
2
3
4
5
6
7
8
9
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun x () U)
(declare-fun y () U)
(declare-fun z () U)
(declare-fun f (U) U)
(assert (and (not (= (f x) (f y))) (= y z) (= (f x) (f (f z))) (= x y)))
(check-sat)
(exit)