Skip to content

Commit 9f21514

Browse files
committed
Style fixes
1 parent 95121cd commit 9f21514

3 files changed

Lines changed: 210 additions & 190 deletions

File tree

cpp/src/branch_and_bound/branch_and_bound.cpp

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1947,8 +1947,8 @@ mip_status_t branch_and_bound_t<i_t, f_t>::solve(mip_solution_t<i_t, f_t>& solut
19471947
exploration_stats_.nodes_explored = 0;
19481948
original_lp_.A.to_compressed_row(Arow_);
19491949

1950-
1951-
variable_bounds_t<i_t, f_t> variable_bounds(original_lp_, settings_, var_types_, Arow_, new_slacks_);
1950+
variable_bounds_t<i_t, f_t> variable_bounds(
1951+
original_lp_, settings_, var_types_, Arow_, new_slacks_);
19521952

19531953
if (guess_.size() != 0) {
19541954
raft::common::nvtx::range scope_guess("BB::check_initial_guess");
@@ -2332,7 +2332,8 @@ mip_status_t branch_and_bound_t<i_t, f_t>::solve(mip_solution_t<i_t, f_t>& solut
23322332
f_t change_in_objective = root_objective_ - last_objective;
23332333
const f_t factor = settings_.cut_change_threshold;
23342334
const f_t min_objective = 1e-3;
2335-
if (0 && change_in_objective <= factor * std::max(min_objective, std::abs(root_relax_objective))) {
2335+
if (0 &&
2336+
change_in_objective <= factor * std::max(min_objective, std::abs(root_relax_objective))) {
23362337
settings_.log.printf(
23372338
"Change in objective %.16e is less than 1e-3 of root relax objective %.16e\n",
23382339
change_in_objective,

0 commit comments

Comments
 (0)