CheckStyle.

This commit is contained in:
Gilles Sadowski 2021-07-14 11:04:50 +02:00
parent 8f83827846
commit bb5843f4aa
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ public class SimplexOptimizer extends MultivariateOptimizer {
// Indirect call to "computeObjectiveValue" in order to update the
// evaluations counter.
final MultivariateFunction evalFunc = (p) -> computeObjectiveValue(p);
final MultivariateFunction evalFunc = p -> computeObjectiveValue(p);
final boolean isMinim = getGoalType() == GoalType.MINIMIZE;
final Comparator<PointValuePair> comparator = (o1, o2) -> {