Skip to content

Commit

Permalink
Commented out initial values of feasibility bound multipliers in IPM
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanaret committed Nov 18, 2024
1 parent 1c1d3ff commit d361749
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ namespace uno {
// set the bound multipliers
for (const size_t variable_index: problem.get_lower_bounded_variables()) {
initial_iterate.multipliers.lower_bounds[variable_index] = this->default_multiplier;
initial_iterate.feasibility_multipliers.lower_bounds[variable_index] = this->default_multiplier;
//initial_iterate.feasibility_multipliers.lower_bounds[variable_index] = this->default_multiplier;
}
for (const size_t variable_index: problem.get_upper_bounded_variables()) {
initial_iterate.multipliers.upper_bounds[variable_index] = -this->default_multiplier;
initial_iterate.feasibility_multipliers.upper_bounds[variable_index] = -this->default_multiplier;
//initial_iterate.feasibility_multipliers.upper_bounds[variable_index] = -this->default_multiplier;
}

// compute least-square multipliers
Expand Down

0 comments on commit d361749

Please sign in to comment.