summaryrefslogtreecommitdiff
path: root/test/regress/regress1/bags/subbag1.smt2
blob: 7a6bf66d79ea7efdd78eb4af976c7f4407a6463b (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)
(assert (= x 1))
(assert (bag.subbag A B))
(assert (bag.subbag B A))
(assert (= (bag.count x A) 5))
(assert (= (bag.count x B) 10))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback