summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/issue4391-card-lasso.smt2
blob: f7a720436319a822e75dbd521ba5255c36a7a015 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
; COMMAND-LINE: -q
; EXPECT: sat
(set-logic ALL)
(set-info :status sat)
(declare-fun d () Int)
(declare-fun b () (Set Int))
(declare-fun c () (Set Int))
(declare-fun e () (Set Int))

(assert (= e (set.union b e)))
(assert (= (set.card b) d))
(assert (= (set.card c) 0))
(assert (= 0 (mod 0 d)))
(assert (> (set.card (set.minus e (set.intersection (set.intersection e b) (set.minus e c)))) 1))

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