mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 11:25:51 +00:00
port grobner basis
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
490672a5ba
commit
cc5a12c5c7
9 changed files with 125 additions and 19 deletions
|
@ -40,7 +40,7 @@ bool horner::row_has_monomial_to_refine(const T& row) const {
|
|||
template <typename T>
|
||||
bool horner::row_is_interesting(const T& row) const {
|
||||
TRACE("nla_solver_details", m_core->print_term(row, tout););
|
||||
if (row.size() > m_core->m_settings.horner_row_length_limit()) {
|
||||
if (row.size() > m_core->m_nla_settings.horner_row_length_limit()) {
|
||||
TRACE("nla_solver_details", tout << "disregard\n";);
|
||||
return false;
|
||||
}
|
||||
|
@ -101,7 +101,7 @@ bool horner::lemmas_on_row(const T& row) {
|
|||
}
|
||||
|
||||
void horner::horner_lemmas() {
|
||||
if (!c().m_settings.run_horner()) {
|
||||
if (!c().m_nla_settings.run_horner()) {
|
||||
TRACE("nla_solver", tout << "not generating horner lemmas\n";);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue