summaryrefslogtreecommitdiff
path: root/test/regress/regress0/sets/mar2014/smaller.smt2
blob: 876311de85fa7749a0f88d0fb9307a0041485189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; EXPECT: sat
; COMMAND-LINE: --simplification=none

; demostrates core issue with UniqueZipper.hs.1030minimized.cvc4.smt2
; fails check-model, even though answer is correct

(set-logic QF_UFLIA_SETS)
(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun a () (Set Int))
(declare-fun b () (Set Int))
(assert (in x (union a b)))
(assert (not (in y a)))
(assert (= x y))
(check-sat)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback