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