Add type to uninterpreted constant values (#8891)
[cvc5.git] / test / regress / cli / regress0 / bug217.smt2
1 ; EXPECT: unsat
2 (set-logic QF_UF)
3 (set-info :status unsat)
4 (set-option :produce-models true)
5 (declare-fun f (Bool) Bool)
6 (declare-fun x () Bool)
7 (declare-fun y () Bool)
8 (declare-fun z () Bool)
9 (assert (or (f x) (f y) (f z)))
10 (assert (not (f false)))
11 (assert (not (f true)))
12 (check-sat)
13 ;(get-value ((f true) (f false) (f x) (f y) (f z) x y z))