Skip to content

Commit

Permalink
l1Relaxation: changed WARNING to DEBUG [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
cvanaret committed Nov 18, 2024
1 parent 11710c9 commit 461693c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace uno {
double constrained_predicted_reduction = l1MeritFunction::constrained_merit_function(predicted_reduction, objective_multiplier);
DEBUG << "Constrained predicted reduction: " << constrained_predicted_reduction << '\n';
if (constrained_predicted_reduction <= 0.) {
WARNING << "The direction is not a descent direction for the merit function. You should decrease the penalty parameter.\n";
DEBUG << "The direction is not a descent direction for the merit function. You should decrease the penalty parameter.\n";
}
// compute current exact penalty
const double current_merit_value = l1MeritFunction::constrained_merit_function(current_progress, objective_multiplier);
Expand Down

0 comments on commit 461693c

Please sign in to comment.