Formatting.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1413172 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-11-24 11:15:12 +00:00
parent ec46f40b0b
commit 9a9b2d3153
1 changed files with 6 additions and 6 deletions

View File

@ -110,9 +110,9 @@ public abstract class BaseAbstractUnivariateOptimizer
/** {@inheritDoc} */
public UnivariatePointValuePair optimize(int maxEval, UnivariateFunction f,
GoalType goalType,
double min, double max,
double startValue) {
GoalType goalType,
double min, double max,
double startValue) {
// Checks.
if (f == null) {
throw new NullArgumentException();
@ -136,9 +136,9 @@ public abstract class BaseAbstractUnivariateOptimizer
/** {@inheritDoc} */
public UnivariatePointValuePair optimize(int maxEval,
UnivariateFunction f,
GoalType goalType,
double min, double max){
UnivariateFunction f,
GoalType goalType,
double min, double max){
return optimize(maxEval, f, goalType, min, max, min + 0.5 * (max - min));
}