summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bags/union_max2.smt2
blob: 1366130bfdccd34c294ace80154b356216628b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic ALL)
(set-info :status unsat)
(declare-fun A () (Bag Int))
(declare-fun B () (Bag Int))
(declare-fun x () Int)
(declare-fun y () Int)
(assert (= A (bag.union_max (bag x 1) (bag y 2))))
(assert (= A (bag.union_disjoint B (bag y 2))))
(assert (= x y))
(assert (distinct (as bag.empty (Bag Int)) B))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback