3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-26 18:45:33 +00:00

fixes in the interval processing in horner

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-07-23 17:22:37 -07:00
parent ba2dbabe21
commit 2a02d04259
4 changed files with 45 additions and 55 deletions

View file

@ -94,10 +94,9 @@ std::ostream& intervals::display(std::ostream& out, const interval& i) const {
m_dep_manager.linearize(i.m_upper_dep, expl);
{
lp::explanation e(expl);
out << "\n)\nupper constraints (\n";
out << "upper constraints\n";
m_core->print_explanation(e, out);
}
out << ")\n";
return out;
}