summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/union-2.smt2
blob: e5e96be5ac95b414b6fbe54a9e059111ddd8ee83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; EXPECT: sat
(set-logic ALL_SUPPORTED)
(set-info :status sat)
(define-sort SetInt () (Set Int))
(declare-fun A () (Set Int))
(declare-fun B () (Set Int))
(declare-fun x () Int)
(declare-fun y () Int)
(assert (in x (union A B)))
(assert (not (in y A)))
(assert (not (in y B)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback