summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/mix-match.smt2
blob: 110df2fa4e47c9b8d10ad80a331af7355ebc3aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; COMMAND-LINE:
; EXPECT: unsat
(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