summaryrefslogtreecommitdiff
path: root/test/regress/regress0/boolean-terms.cvc.smt2
blob: f63084f5c0f14b3c5017ba068e0affae4a31bcd4 (plain)
1
2
3
4
5
6
7
8
9
; EXPECT: sat
(set-logic ALL)
(set-option :incremental false)
(declare-fun f (Bool) Int)
(declare-fun x () Int)
(declare-fun p (Bool) Bool)
(assert (= (f (p true)) x))
(assert (= (f (p false)) (+ x 1)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback