mirror of
https://github.com/Z3Prover/z3
synced 2025-04-22 16:45:31 +00:00
fix the release build
Signed-off-by: Lev Nachmanson <levnach@nachmanson.com>
This commit is contained in:
parent
2c1d68e163
commit
7c4290e398
1 changed files with 3 additions and 3 deletions
|
@ -475,9 +475,9 @@ nla_grobner::equation * nla_grobner::simplify(equation const * source, equation
|
|||
}
|
||||
|
||||
std::ostream& nla_grobner::display_equation(std::ostream & out, equation & eq) {
|
||||
tout << "m_exp = " << *eq.m_exp << "\n";
|
||||
tout << "dep = "; display_dependency(tout, eq.m_dep) << "\n";
|
||||
return tout;
|
||||
out << "m_exp = " << *eq.m_exp << "\n";
|
||||
out << "dep = "; display_dependency(out, eq.m_dep) << "\n";
|
||||
return out;
|
||||
}
|
||||
|
||||
void nla_grobner::display_monomial(std::ostream & out, monomial const & m) const {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue