3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

improve tracing

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-07-29 11:06:47 -07:00
parent 9dbd8d3d46
commit b9483d0aff
3 changed files with 19 additions and 10 deletions

View file

@ -165,10 +165,10 @@ interv horner::interval_of_mul(const nex& e) {
interv c;
m_intervals.mul(a, b, c, comb_rule);
m_intervals.combine_deps(a, b, comb_rule, c);
TRACE("nla_horner_details", tout << "a "; m_intervals.display(tout, a) << "\n";);
TRACE("nla_horner_details", tout << "c "; m_intervals.display(tout, c) << "\n";);
TRACE("nla_horner_details", tout << "a "; m_intervals.display(tout, a););
TRACE("nla_horner_details", tout << "c "; m_intervals.display(tout, c););
m_intervals.set(a, c);
TRACE("nla_horner_details", tout << "part mult "; m_intervals.display(tout, a) << "\n";);
TRACE("nla_horner_details", tout << "part mult "; m_intervals.display(tout, a););
}
TRACE("nla_horner_details", tout << "e=" << e << "\n";
tout << " return "; m_intervals.display(tout, a););