summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/union-2.smt2
blob: 6e293397520f180042a2a41fcc9f7442ea7f3577 (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 (member x (union A B)))
(assert (not (member y A)))
(assert (not (member y B)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback