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:
parent
9e52a38580
commit
899677e626
1 changed files with 2 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue