summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug421b.smt2
blob: 82f566a64143699324d0db6f0b92cd608544ac81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; same as bug421.smt2 but adds --check-models on command line:
; this actually caused the same bug for a different reason, so
; we check them both independently in regressions
;
; COMMAND-LINE: --incremental --abstract-values --check-models
; EXPECT: sat
; EXPECT: ((a @1) (b @2))
(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