3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

calculate power of intervals with depenencies

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-10-15 10:24:50 -07:00
parent dd4dc1ad14
commit 4daa841116
2 changed files with 26 additions and 1 deletions

View file

@ -148,8 +148,10 @@ interv horner::power_with_deps(const interv& a, unsigned n) {
interv b;
interval_deps_combine_rule combine_rule;
m_intervals.power(a, n, b, combine_rule);
m_intervals.combine_deps(a, combine_rule, b);
TRACE("nla_horner_details", tout << "power of "; m_intervals.display(tout, a) << " = ";
m_intervals.display(tout, b) << "\n";);
m_intervals.display(tout, b) << "\n"; );
return b;
}