summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/sets-inter.smt2
blob: 0f5e41864d55ca48b926fd7b05deb3dc128377e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
(set-logic ALL_SUPPORTED)
(set-info :status unsat)
(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 (intersection a b)))
(assert (not (in x b)))
(check-sat)
(exit)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback