mirror of
https://github.com/Z3Prover/z3
synced 2025-04-06 01:24:08 +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;
|
in = true;
|
||||||
eq_index = idx;
|
eq_index = idx;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
++idx;
|
||||||
}
|
}
|
||||||
if (in) {
|
if (in) {
|
||||||
peq p_new = mk_wr_peq(a, p.rhs(), indices);
|
peq p_new = mk_wr_peq(a, p.rhs(), indices);
|
||||||
|
|
Loading…
Reference in a new issue