summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/sets-union.smt2
blob: 656a0bc88d0bd5095f3dda6647c707888a0f9c0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; COMMAND-LINE: --incremental
; EXPECT: sat
; EXPECT: unsat
(set-logic ALL_SUPPORTED)
(define-sort SetInt () (Set Int))
(declare-fun a () (Set Int))
(declare-fun b () (Set Int))
(declare-fun x () Int)
(assert (not (in x a)))
(assert (in x (union a b)))
(check-sat)
;(get-model)
(assert (not (in x b)))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback