aboutsummaryrefslogtreecommitdiffstats
path: root/unit-tests/ex1.smt2
blob: 51685ed18b272c98c800c323bc40a1424705a55a (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic QF_SAT)
(declare-fun a () Bool)
(declare-fun b () Bool)
(declare-fun c () Bool)

(assert (not (=> (and (=> a b) (=> b c)) (=> a c))))

(check-sat)

(exit)