summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bt-test-01.smt2
blob: e17bd2d7a97fa06587586c10134cc402c513a0fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
; EXPECT: unsat
(set-logic QF_UF)
(set-info :smt-lib-version 2.0)
(set-info :category "crafted")
(set-info :status unsat)

(declare-fun x0 () Bool)
(declare-fun y0 () Bool)
(declare-fun z0 () Bool)

(assert (or x0 y0))
(assert (or (not y0) z0))

(declare-fun x1 () Bool)
(declare-fun y1 () Bool)

(assert x1)
(assert y1)

(declare-fun f (Bool) Bool)

(assert (not (= (f (or x0 z0)) (f (and x1 y1)))))

(check-sat)

(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback