aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/uf1.smt2
blob: b7c9df447d1df392ec483b0707f34fab247ce4bb (plain)
1
2
3
4
5
6
7
8
9
10
(set-logic QF_UF)
(declare-sort U 0)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)
(declare-fun f (U) U)
(declare-fun p (U) Bool)
(assert (and (= a c) (and (= b c) (or (not (= (f a) (f b))) (and (p a) (not (p b)))))))
(check-sat)
(exit)