summaryrefslogtreecommitdiff
path: root/test/regress/regress0/rels/iden_1.cvc.smt2
blob: c2de24558ced6d6671a1de0e0c438bb7a57a3fcc (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-option :sets-ext true)
(set-logic ALL)
(declare-sort Atom 0)

(declare-fun x () (Set (Tuple Atom Atom)))
(declare-fun t () (Set (Tuple Atom)))
(declare-fun univ () (Set (Tuple Atom)))
(declare-fun a () Atom)
(declare-fun b () Atom)
(declare-fun c () Atom)
(declare-fun d () Atom)
(assert (= univ (as univset (Set (Tuple Atom)))))
(assert (member (tuple a b) x))
(assert (member (tuple c d) x))
(assert (not (= a b)))
(assert (= (iden (join x univ)) x))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback