Skip to content

Commit

Permalink
change some TRACE statements
Browse files Browse the repository at this point in the history
  • Loading branch information
levnach committed Dec 20, 2023
1 parent db5a1a7 commit d636561
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/math/lp/int_solver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -670,11 +670,11 @@ namespace lp {
if (abs(value.x) < small_value ||
(has_upper(j) && small_value > upper_bound(j).x - value.x) ||
(has_lower(j) && small_value > value.x - lower_bound(j).x)) {
TRACE("gomory_cut", tout << "small j" << j << "\n");
TRACE("int_solver", tout << "small j" << j << "\n");
add_column(true, r_small_value, n_small_value, j);
continue;
}
TRACE("gomory_cut", tout << "any j" << j << "\n");
TRACE("int_solver", tout << "any j" << j << "\n");
add_column(usage >= prev_usage, r_any_value, n_any_value, j);
if (usage > prev_usage)
prev_usage = usage;
Expand Down

0 comments on commit d636561

Please sign in to comment.