aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/uf4.smt2
blob: 1b9a7e1432af3e0367e73cfc129d59e6531b8b23 (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))) (and (= y z) (and (= (f x) (f (f z))) (= x y)))))
(check-sat)
(exit)