aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/uf7.smt2
blob: 30efa7c0fbcd25765f6d35a2662e564fca21501a (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun x () U)
(declare-fun y () U)
(declare-fun z () U)
(declare-fun P (U U) Bool)
(assert (= x y))
(assert (P z x))
(assert (not (P z y)))
(check-sat)
(exit)