mirror of
https://github.com/Z3Prover/z3
synced 2025-04-05 09:04:07 +00:00
fix regression, missing idx increment in iterator loop #7566
This commit is contained in:
parent
a7310462df
commit
db997cd64d
|
@ -201,7 +201,8 @@ struct mbp_array_tg::impl {
|
|||
in = true;
|
||||
eq_index = idx;
|
||||
break;
|
||||
}
|
||||
}
|
||||
++idx;
|
||||
}
|
||||
if (in) {
|
||||
peq p_new = mk_wr_peq(a, p.rhs(), indices);
|
||||
|
|
Loading…
Reference in a new issue