mirror of
https://github.com/Z3Prover/z3
synced 2025-04-28 19:35:50 +00:00
Debug (#4415)
* fix it explanation.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * fix explanation.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * add options to run bound propagation on monomials etc. Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
7e84a48069
commit
bfd2407e0f
6 changed files with 28 additions and 10 deletions
|
@ -229,8 +229,12 @@ public:
|
|||
lpvar var(const factor& f) const { return f.var(); }
|
||||
|
||||
// returns true if the combination of the Horner's schema and Grobner Basis should be called
|
||||
bool need_to_call_algebraic_methods() const {
|
||||
return lp_settings().stats().m_nla_calls % m_nla_settings.horner_frequency() == 0;
|
||||
bool need_run_horner() const {
|
||||
return m_nla_settings.run_horner() && lp_settings().stats().m_nla_calls % m_nla_settings.horner_frequency() == 0;
|
||||
}
|
||||
|
||||
bool need_run_grobner() const {
|
||||
return m_nla_settings.run_grobner() && lp_settings().stats().m_nla_calls % m_nla_settings.grobner_frequency() == 0;
|
||||
}
|
||||
|
||||
void incremental_linearization(bool);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue