Skip to content

Commit

Permalink
Remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tbittar committed Dec 11, 2024
1 parent c36b135 commit c6a495a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/cpp/benders/merge_mps/MergeMPS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ void MergeMPS::launch() {

if (kvp.first != _options.MASTER_NAME) {
solver_l->read_prob_mps(problem_name);
// std::filesystem::remove(problem_name);
int mps_ncols(solver_l->get_ncols());

// -------- Change sub pb objective to take weights into account -------
DblVector o(mps_ncols);
IntVector sequence(mps_ncols);
for (int i(0); i < mps_ncols; ++i) {
Expand All @@ -48,10 +46,8 @@ void MergeMPS::launch() {
c *= weigth;
}
solver_l->chg_obj(sequence, o);
// -------- End change sub pb objective to take weights into account -----


} else {
} else {
solver_l->read_prob_mps(problem_name);
}
StandardLp lpData(*solver_l);
Expand Down

0 comments on commit c6a495a

Please sign in to comment.