mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
add compare() to nla_expr
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
0b86a282e4
commit
8ed865e447
4 changed files with 59 additions and 10 deletions
|
@ -42,9 +42,12 @@ void horner::lemmas_on_expr(nex& e) {
|
|||
TRACE("nla_cn", tout << "e = " << e << "\n";);
|
||||
TRACE("nla_cn_cn", tout << "e = " << e << "\n";);
|
||||
cross_nested cn(e, [this](const nex& n) {
|
||||
auto i = interval_of_expr(n);
|
||||
m_intervals.check_interval_for_conflict_on_zero(i);} );
|
||||
cn.run();
|
||||
TRACE("nla_cn", tout << "callback n = " << n << "\n";);
|
||||
auto i = interval_of_expr(n);
|
||||
m_intervals.check_interval_for_conflict_on_zero(i);} );
|
||||
cn.run();
|
||||
TRACE("nla_cn", tout << "lemmas_on_expr done\n";);
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue