aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/simple.smt2
blob: 13d15cb4d5d81ee8d30c908bf2c63ee374903ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
(set-option :produce-proofs true)
(set-logic QF_UF)
(declare-sort U 0)

(declare-fun f (U U) U)
(declare-fun a () U)
(declare-fun b () U)
(declare-fun c () U)

(assert (not (= (f a b) (f b b))))
(assert (not (= (f a b) (f c b))))

(assert (or (= a b) (= a c)))
(check-sat)
(get-proof)
(exit)