aboutsummaryrefslogtreecommitdiffstats
path: root/src/lfsc/tests/ex.smt2
blob: 66cf015bbc74bed396f82f1b026098656ebdef63 (plain)
1
2
3
4
5
6
7
8
9
;; (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)