summaryrefslogtreecommitdiff
path: root/test/regress/regress1/quantifiers/set-choice-koikonomou.cvc.smt2
blob: 61088eeeb646244674b69fb2db421bf3998196b1 (plain)
1
2
3
4
5
6
7
8
9
; EXPECT: unsat
(set-logic ALL)
(set-option :incremental false)
(set-option :finite-model-find true)
(set-option :fmf-bound-int true)
(declare-fun X () (Set Int))
(assert (= (set.card X) 3))
(assert (forall ((z Int)) (=> (set.member z X) (and (> z 0) (< z 2)))))
(check-sat-assuming ( (forall ((z Int)) (=> (set.member z X) (> z 0))) ))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback