summaryrefslogtreecommitdiff
path: root/test/regress/regress1/sets/card-3.smt2
blob: 383395b0d831104f2da5be9756985ca3626f9517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
(set-logic QF_UFLIAFS)
(set-info :status unsat)
(declare-sort E 0)
(declare-fun s () (Set E))
(declare-fun t () (Set E))
(declare-fun u () (Set E))
(assert (>= (set.card (set.union s t)) 8))
(assert (>= (set.card (set.union s u)) 8))
(assert (<= (set.card (set.union t u)) 5))
(assert (<= (set.card s) 5))
(assert (= (as set.empty (Set E)) (set.intersection t u)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback