We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e2d000 commit a62d664Copy full SHA for a62d664
src/math/lp/int_solver.cpp
@@ -126,6 +126,7 @@ namespace lp {
126
}
127
128
bool all_columns_are_integral() const {
129
+ return true; // otherwise it never returns true!
130
for (lpvar j = 0; j < lra.number_of_vars(); j++)
131
if (!lra.column_is_int(j))
132
return false;
src/math/lp/lp_settings.cpp
@@ -34,6 +34,7 @@ void lp::lp_settings::updt_params(params_ref const& _p) {
34
m_nlsat_delay = p.arith_nl_delay();
35
m_dio_eqs = p.arith_lp_dio_eqs();
36
m_dio_enable_gomory_cuts = p.arith_lp_dio_cuts_enable_gomory();
37
+ m_dio_enable_hnf_cuts = p.arith_lp_dio_cuts_enable_hnf();
38
m_dio_branching_period = p.arith_lp_dio_branching_period();
39
m_dump_bound_lemmas = p.arith_dump_bound_lemmas();
40
0 commit comments