Corrected typos in some Javadoc comments.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@979458 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1bc1ca5843
commit
e0723d16df
|
@ -64,9 +64,9 @@ public interface BaseMultivariateRealOptimizer<T extends MultivariateRealFunctio
|
|||
|
||||
/**
|
||||
* Get the number of iterations realized by the algorithm.
|
||||
* The number of evaluations corresponds to the last call to the
|
||||
* {@link #optimize(MultivariateRealFunction, GoalType, double[]) optimize}
|
||||
* method. It is 0 if the method has not been called yet.
|
||||
* The number of iterations corresponds to the last call to the
|
||||
* {@code optimize} method. It is 0 if the method has not been
|
||||
* called yet.
|
||||
*
|
||||
* @return the number of iterations.
|
||||
*/
|
||||
|
@ -74,10 +74,9 @@ public interface BaseMultivariateRealOptimizer<T extends MultivariateRealFunctio
|
|||
|
||||
/**
|
||||
* Get the number of evaluations of the objective function.
|
||||
*
|
||||
* The number of evaluations corresponds to the last call to the
|
||||
* {@link #optimize(T, GoalType, double[]) optimize}
|
||||
* method. It is 0 if the method has not been called yet.
|
||||
* {@code optimize} method. It is 0 if the method has not been
|
||||
* called yet.
|
||||
*
|
||||
* @return the number of evaluations of the objective function.
|
||||
*/
|
||||
|
|
|
@ -21,10 +21,12 @@ import org.apache.commons.math.FunctionEvaluationException;
|
|||
import org.apache.commons.math.analysis.DifferentiableMultivariateRealFunction;
|
||||
|
||||
/**
|
||||
* This interface represents an optimization algorithm for {@link DifferentiableMultivariateRealFunction
|
||||
* scalar differentiable objective functions}.
|
||||
* <p>Optimization algorithms find the input point set that either {@link GoalType
|
||||
* maximize or minimize} an objective function.</p>
|
||||
* This interface represents an optimization algorithm for
|
||||
* {@link DifferentiableMultivariateRealFunction scalar differentiable objective
|
||||
* functions}.
|
||||
* Optimization algorithms find the input point set that either {@link GoalType
|
||||
* maximize or minimize} an objective function.
|
||||
*
|
||||
* @see MultivariateRealOptimizer
|
||||
* @see DifferentiableMultivariateVectorialOptimizer
|
||||
* @version $Revision$ $Date$
|
||||
|
@ -35,8 +37,8 @@ public interface DifferentiableMultivariateRealOptimizer
|
|||
/**
|
||||
* Get the number of evaluations of the objective function gradient.
|
||||
* The number of evaluations corresponds to the last call to the
|
||||
* {@link #optimize(DifferentiableMultivariateRealFunction, GoalType, double[]) optimize}
|
||||
* method. It is 0 if the method has not been called yet.
|
||||
* {@code optimize} method (see {@link BaseMultivariateRealOptimizer}).
|
||||
* It is 0 if the method has not been called yet.
|
||||
*
|
||||
* @return the number of evaluations of the objective function gradient.
|
||||
*/
|
||||
|
|
|
@ -70,7 +70,7 @@ public abstract class AbstractScalarDifferentiableOptimizer
|
|||
*/
|
||||
protected AbstractScalarDifferentiableOptimizer() {}
|
||||
/**
|
||||
* @param convergenceChecker Convergence checker.
|
||||
* @param checker Convergence checker.
|
||||
* @param maxIterations Maximum number of iterations.
|
||||
* @param maxEvaluations Maximum number of evaluations.
|
||||
*/
|
||||
|
|
|
@ -48,7 +48,7 @@ public abstract class AbstractScalarOptimizer
|
|||
*/
|
||||
protected AbstractScalarOptimizer() {}
|
||||
/**
|
||||
* @param convergenceChecker Convergence checker.
|
||||
* @param checker Convergence checker.
|
||||
* @param maxIterations Maximum number of iterations.
|
||||
* @param maxEvaluations Maximum number of evaluations.
|
||||
*/
|
||||
|
|
|
@ -78,7 +78,7 @@ public abstract class BaseAbstractScalarOptimizer<T extends MultivariateRealFunc
|
|||
DEFAULT_MAX_EVALUATIONS);
|
||||
}
|
||||
/**
|
||||
* @param convergenceChecker Convergence checker.
|
||||
* @param checker Convergence checker.
|
||||
* @param maxIterations Maximum number of iterations.
|
||||
* @param maxEvaluations Maximum number of evaluations.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue