From d3617491ce325dc5dd77531d98331d03ff5d54d7 Mon Sep 17 00:00:00 2001 From: Charlie Vanaret Date: Mon, 18 Nov 2024 20:57:19 +0100 Subject: [PATCH] Commented out initial values of feasibility bound multipliers in IPM --- .../PrimalDualInteriorPointSubproblem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uno/ingredients/subproblems/interior_point_methods/PrimalDualInteriorPointSubproblem.cpp b/uno/ingredients/subproblems/interior_point_methods/PrimalDualInteriorPointSubproblem.cpp index 276943c3..c7be5705 100644 --- a/uno/ingredients/subproblems/interior_point_methods/PrimalDualInteriorPointSubproblem.cpp +++ b/uno/ingredients/subproblems/interior_point_methods/PrimalDualInteriorPointSubproblem.cpp @@ -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