summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug217.smt2
blob: 30c87333e5bfcd65677565e56427ccdc45a13e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; COMMAND-LINE: --fewer-preprocessing-holes
; EXPECT: unsat
(set-logic QF_UF)
(set-info :status unsat)
(set-option :produce-models true)
(declare-fun f (Bool) Bool)
(declare-fun x () Bool)
(declare-fun y () Bool)
(declare-fun z () Bool)
(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