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:
parent
3eeb59db34
commit
48c0f8694f
2 changed files with 6 additions and 12 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue