summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bags/card2.smt2
blob: 260c6927fd0669a08ce7995fee48b2140d359bd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic ALL)
(set-option :fmf-bound true)
(set-option :produce-models true)
(set-info :status sat)
(declare-fun A () (Bag String))
(declare-fun B () (Bag String))
(declare-fun C () (Bag String))
(assert (distinct A B C (as bag.empty (Bag String))))
(assert (= C (bag.union_disjoint A B)))
(assert (= (bag.card C) 10000000))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback