summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/rel_join_6.cvc.smt2
blob: 391bd0fad63d7523e7a36960cc87fbc027c723b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
; EXPECT: unsat
(set-option :incremental false)
(set-logic ALL)

(declare-fun x () (Set (Tuple Int Int)))
(declare-fun y () (Set (Tuple Int Int)))
(declare-fun r () (Set (Tuple Int Int)))
(assert (= x (union (singleton (mkTuple 1 2)) (singleton (mkTuple 3 4)))))
(assert (= y (join x (union (singleton (mkTuple 2 1)) (singleton (mkTuple 4 3))))))
(assert (not (member (mkTuple 1 1) y)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback