mirror of
https://github.com/Z3Prover/z3
synced 2025-08-02 17:30:23 +00:00
parent
b066f562c6
commit
98ff388c4e
3 changed files with 4 additions and 6 deletions
|
@ -71,10 +71,8 @@ namespace smt {
|
|||
if (m_nl_monomials.empty())
|
||||
return;
|
||||
out << "non linear monomials:\n";
|
||||
svector<theory_var>::const_iterator it = m_nl_monomials.begin();
|
||||
svector<theory_var>::const_iterator end = m_nl_monomials.end();
|
||||
for (; it != end; ++it)
|
||||
display_var(out, *it);
|
||||
for (auto nl : m_nl_monomials)
|
||||
display_var(out, nl);
|
||||
}
|
||||
|
||||
template<typename Ext>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue