summaryrefslogtreecommitdiff
path: root/test/regress/regress0/arrays/bool-array.smt2
blob: f05d0266b354852dd3486b9201474b70c3258a25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; COMMAND-LINE: --no-check-proofs --no-check-unsat-cores
; EXPECT: unsat
(set-logic QF_AX)
(set-info :status unsat)

(declare-fun a () (Array Bool Bool))
(declare-fun b () (Array Bool Bool))

(assert (not (= (select a (= a b)) (select a (not (= a b))))))
(assert (= (select a true) (select a false)))

(check-sat)

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback