summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/mix-match.smt2
blob: c6ac3b56f87ee7a9d7ea5133335b775d3602d7ed (plain)
1
2
3
4
5
6
7
8
9
10
(set-logic ALL_SUPPORTED)
(set-info :status unsat)
(declare-fun P (Real) Bool)
(assert (forall ((x Int)) (P x)))

(declare-fun a () Real)
(assert (is_int a))
(assert (not (P a)))

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