summaryrefslogtreecommitdiff
path: root/test/regress/regress1/rels/rel_tp_2.cvc.smt2
blob: 822c1fd52b6838f02a886b06dfc39673777335d4 (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 z () (Set (Tuple Int Int)))
(assert (or (= z (transpose y)) (= z (transpose x))))
(assert (not (= (transpose z) y)))
(assert (not (= (transpose z) x)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback