summaryrefslogtreecommitdiff
path: root/test/regress/regress0/uf/bug217.smt2
blob: 45f0f3c0c0ad060865ab48cb11b79b29ec72d473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-logic QF_UF)
(set-info :status unsat)
(declare-fun f (Bool) Bool)
(declare-fun x () Bool)
(declare-fun y () Bool)
(declare-fun z () Bool)
;(assert (and x (or (f x) (f y))))
(assert (or (f x) (f y) (f z)))
(assert (not (f false)))
(assert (not (f true)))
(check-sat)
;(get-value ((f true) (f false) (f x) (f y) (f z) x y z))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback