3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 01:11:55 +00:00

add parameter lp_settings.m_gomory_simplify

This commit is contained in:
Lev Nachmanson 2023-12-27 08:33:51 -10:00 committed by Lev Nachmanson
parent 5796e8899f
commit 0728b81e9e
5 changed files with 6 additions and 2 deletions

View file

@ -32,4 +32,5 @@ void lp::lp_settings::updt_params(params_ref const& _p) {
report_frequency = p.arith_rep_freq();
m_simplex_strategy = static_cast<lp::simplex_strategy_enum>(p.arith_simplex_strategy());
m_nlsat_delay = p.arith_nl_delay();
m_gomory_simplify = p.arith_gomory_simplify();
}