summaryrefslogtreecommitdiff
path: root/test/regress/regress1/rels/joinImg_1_1.cvc.smt2
blob: dc940a43b184ba0c762bcc277f874816659bf907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
; EXPECT: sat
(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 (tuple a) (join_image x 2)))
(assert (= t (join_image x 2)))
(assert (= x (union (union (singleton (tuple b c)) (singleton (tuple d e))) (singleton (tuple c e)))))
(assert (member (tuple c) t))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback