3
0
Fork 0
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:
Lev Nachmanson 2019-10-09 12:07:57 -07:00 committed by Lev Nachmanson
parent 2c1d68e163
commit 7c4290e398

View file

@ -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 {