3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-09 16:55:47 +00:00

euf-completion bug fix, streamline name to solve_eqs

This commit is contained in:
Nikolaj Bjorner 2022-11-14 20:01:00 -08:00
parent 3eeb59db34
commit 48c0f8694f
2 changed files with 6 additions and 12 deletions

View file

@ -90,7 +90,8 @@ namespace euf {
return;
}
for (unsigned i = m_qhead; i < m_fmls.size(); ++i) {
unsigned sz = m_fmls.size();
for (unsigned i = m_qhead; i < sz; ++i) {
auto [f, d] = m_fmls[i]();
expr_dependency_ref dep(d, m);