summaryrefslogtreecommitdiff
path: root/test/regress/regress1/rels/joinImg_1.cvc.smt2
blob: 3c5664d768154058d2aa7f9e0815c94c11256ca7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; EXPECT: unsat
(set-option :incremental false)
(set-logic ALL)
(set-option :sets-ext true)
(declare-sort Atom 0)
(declare-fun x () (Set (Tuple Atom Atom)))
(declare-fun y () (Set (Tuple Atom Atom)))
(declare-fun r () (Set (Tuple Atom Atom)))
(declare-fun t () (Set (Tuple Atom)))
(declare-fun a () Atom)
(declare-fun b () Atom)
(declare-fun c () Atom)
(declare-fun d () Atom)
(declare-fun e () Atom)
(assert (member (mkTuple a) (join_image x 2)))
(assert (= x (union (union (singleton (mkTuple b c)) (singleton (mkTuple d e))) (singleton (mkTuple c e)))))
(assert (not (= a b)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback