summaryrefslogtreecommitdiff
path: root/test/regress/regress0/bug421b.smt2
blob: a47efb6fbe2555e3063b0d6f00a67c662062c048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
; 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))
; EXIT: 10
(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