aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf3.smt2
blob: 3d514cda3d80abb5e9a9ef61b7a555b0e637eb9a (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 (= x y) (= y z) (not (= (f x) (f z)))))
(check-sat)
(exit)