summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/rel_symbolic_1.cvc.smt2
blob: 9952b64ec593c5456ae9e30b8ed668a2e1335718 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; 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)))
(declare-fun f () Int)
(declare-fun d () (Tuple Int Int))
(assert (= d (mkTuple f 3)))
(assert (member d y))
(declare-fun e () (Tuple Int Int))
(assert (= e (mkTuple 4 f)))
(assert (member e x))
(declare-fun a () (Tuple Int Int))
(assert (= a (mkTuple 4 3)))
(assert (= r (join x y)))
(assert (not (member a r)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback