Skip to content

Commit b5f2c7e

Browse files
committed
moved bound propagation logs to debug mode
1 parent 546b116 commit b5f2c7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cpp/src/dual_simplex/bounds_strengthening.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ bool bounds_strengthening_t<i_t, f_t>::bounds_strengthening(
154154
bool is_infeasible =
155155
check_infeasibility<i_t, f_t>(min_a, max_a, cnst_lb, cnst_ub, settings.primal_tol);
156156
if (is_infeasible) {
157-
settings.log.printf(
157+
settings.log.debug(
158158
"Iter:: %d, Infeasible constraint %d, cnst_lb %e, cnst_ub %e, min_a %e, max_a %e\n",
159159
iter,
160160
i,
@@ -211,7 +211,7 @@ bool bounds_strengthening_t<i_t, f_t>::bounds_strengthening(
211211
new_ub = std::min(new_ub, upper_bounds[k]);
212212

213213
if (new_lb > new_ub + 1e-6) {
214-
settings.log.printf(
214+
settings.log.debug(
215215
"Iter:: %d, Infeasible variable after update %d, %e > %e\n", iter, k, new_lb, new_ub);
216216
return false;
217217
}

0 commit comments

Comments
 (0)