3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-03 09:50:23 +00:00

fix a warning

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2025-06-26 13:32:10 -07:00 committed by Lev Nachmanson
parent 9e52a38580
commit 899677e626

View file

@ -37,10 +37,9 @@ core::core(lp::lar_solver& s, params_ref const& p, reslimit & lim) :
m_horner(this),
m_grobner(this),
m_emons(m_evars),
m_throttle(lra.trail()),
m_use_nra_model(false),
m_nra(s, m_nra_lim, *this)
{
m_nra(s, m_nra_lim, *this),
m_throttle(lra.trail()) {
m_nlsat_delay_bound = lp_settings().nlsat_delay();
m_throttle.set_enabled(m_params.arith_nl_thrl());
lra.m_find_monics_with_changed_bounds_func = [&](const indexed_uint_set& columns_with_changed_bounds) {