3
0
Fork 0
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:
Nikolaj Bjorner 2025-02-25 01:52:42 -08:00
parent a7310462df
commit db997cd64d

View file

@ -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);