summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug421.smt2
blob: fd7b4a7cce0763349ac44952adaef6d38e9b7058 (plain)
1
2
3
4
5
6
7
8
9
10
; COMMAND-LINE: --incremental --abstract-values
; EXPECT: sat
; EXPECT: ((a (as @1 (Array Int Int))) (b (as @2 (Array Int Int))))
(set-logic QF_AUFLIA)
(set-option :produce-models true)
(declare-fun a () (Array Int Int))
(declare-fun b () (Array Int Int))
(assert (not (= a b)))
(check-sat)
(get-value (a b))
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback