Fix assertion related to assignability in the model. (#3843)
[cvc5.git] / test / regress / regress0 / bug544.smt2
1 ; EXPECT: sat
2 ; EXPECT: (((not (select a x)) false))
3 (set-option :produce-models true)
4 (set-logic QF_AUFLIA)
5 (declare-sort U 0)
6 (declare-fun x () U)
7 (declare-fun a () (Array U Bool))
8 (assert (select a x))
9 (check-sat)
10 (get-value ((not (select a x))))