summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/card-3.smt2
blob: 0e96b0231db5277fae26b4a127c74501f1f11764 (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 (>= (card (union s t)) 8))
(assert (>= (card (union s u)) 8))
(assert (<= (card (union t u)) 5))
(assert (<= (card s) 5))
(assert (= (as emptyset (Set E)) (intersection t u)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback