summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/issue2904.smt2
blob: c39ea09ba2ba691f3edd3792f7b00a316c636442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
(set-logic ALL)
(set-info :status unsat)
; conjecture set nonempty(~b & ~c)

(declare-fun n () Int)
(declare-fun f () Int)
(declare-fun m () Int)

(declare-fun b () (Set Int))
(declare-fun c () (Set Int))
(declare-fun UNIVERALSET () (Set Int))
(assert (set.subset b UNIVERALSET))
(assert (set.subset c UNIVERALSET))

(assert (> n 0))
(assert (= (set.card UNIVERALSET) n))
(assert (= (set.card b) m))
(assert (= (set.card c) (- f m)))
(assert (>= m 0))
(assert (>= f m))
(assert (> n (+ (* 2 f) m)))


(assert (>= (set.card (set.minus UNIVERALSET (set.intersection (set.minus UNIVERALSET b) (set.minus UNIVERALSET c)))) n))

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