summaryrefslogtreecommitdiff
path: root/test/regress/regress0/quantifiers/macros-real-arg.smt2
blob: 675c96d68e3d46a505ec771307ccd15f4a77d2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
; COMMAND-LINE: --macros-quant
; EXPECT: unsat
; this will fail if type rule for APPLY_UF is made strict
(set-logic UFLIRA)
(declare-fun P (Int) Bool)
(assert (forall ((x Int)) (P x)))
(declare-fun k () Real)
(declare-fun k2 () Int)
(assert (or (not (P k)) (not (P k2))))
(assert (= k 0))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback