3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-06 09:16:18 +00:00

household

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2025-09-27 16:59:22 +03:00
parent 88844a84aa
commit ad11e4626e
5 changed files with 120 additions and 100 deletions

View file

@ -35,7 +35,7 @@ core::core(lp::lar_solver& s, params_ref const& p, reslimit & lim) :
m_divisions(*this),
m_intervals(this, lim),
m_monomial_bounds(this),
m_mul_saturate(this),
m_stellensatz(this),
m_horner(this),
m_grobner(this),
m_emons(m_evars),
@ -1334,7 +1334,7 @@ lbool core::check() {
}
if (no_effect() && lp_settings().m_enable_stellensatz)
ret = m_mul_saturate.saturate();
ret = m_stellensatz.saturate();
if (no_effect() && should_run_bounded_nlsat())
ret = bounded_nlsat();