summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/mar2014/sharing-preregister.smt2
blob: 6655713cfae86bbf709edfd8d0c66603838cbb3c (plain)
1
2
3
4
5
6
7
8
9
10
11
; EXPECT: unsat
(set-logic QF_UFLIAFS)
(declare-fun a () Int)
(declare-fun b () Int)
(declare-fun x () (Set Int))
(declare-fun y () (Set Int))
(assert (= x (set.singleton a)))
(assert (= y (set.singleton b)))
(assert (not (= x y)))
(assert (and (< 1 a) (< a 3) (< 1 b) (< b 3)))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback