Uses of Interface
org.apache.commons.math3.optimization.ConvergenceChecker
Packages that use ConvergenceChecker
Package
Description
All classes and sub-packages of this package are deprecated.
This package provides optimization algorithms that don't require derivatives.
This package provides optimization algorithms that require derivatives.
Univariate real functions minimum finding algorithms.
-
Uses of ConvergenceChecker in org.apache.commons.math3.optimization
Classes in org.apache.commons.math3.optimization that implement ConvergenceCheckerModifier and TypeClassDescriptionclassDeprecated.As of 3.1 (to be removed in 4.0).classSimplePointChecker<PAIR extends Pair<double[],? extends Object>> Deprecated.As of 3.1 (to be removed in 4.0).classDeprecated.As of 3.1 (to be removed in 4.0).classDeprecated.As of 3.1 (to be removed in 4.0).Methods in org.apache.commons.math3.optimization that return ConvergenceCheckerModifier and TypeMethodDescriptionBaseMultivariateMultiStartOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.BaseMultivariateVectorMultiStartOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.BaseOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker. -
Uses of ConvergenceChecker in org.apache.commons.math3.optimization.direct
Methods in org.apache.commons.math3.optimization.direct that return ConvergenceCheckerModifier and TypeMethodDescriptionBaseAbstractMultivariateOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.BaseAbstractMultivariateVectorOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.Constructors in org.apache.commons.math3.optimization.direct with parameters of type ConvergenceCheckerModifierConstructorDescriptionprotectedDeprecated.protectedDeprecated.protectedDeprecated.CMAESOptimizer(int lambda, double[] inputSigma, int maxIterations, double stopFitness, boolean isActiveCMA, int diagonalOnly, int checkFeasableCount, RandomGenerator random, boolean generateStatistics, ConvergenceChecker<PointValuePair> checker) Deprecated.CMAESOptimizer(int maxIterations, double stopFitness, boolean isActiveCMA, int diagonalOnly, int checkFeasableCount, RandomGenerator random, boolean generateStatistics, ConvergenceChecker<PointValuePair> checker) Deprecated.PowellOptimizer(double rel, double abs, double lineRel, double lineAbs, ConvergenceChecker<PointValuePair> checker) Deprecated.This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure and the line search tolerances.PowellOptimizer(double rel, double abs, ConvergenceChecker<PointValuePair> checker) Deprecated.This constructor allows to specify a user-defined convergence checker, in addition to the parameters that control the default convergence checking procedure.SimplexOptimizer(ConvergenceChecker<PointValuePair> checker) Deprecated. -
Uses of ConvergenceChecker in org.apache.commons.math3.optimization.general
Constructors in org.apache.commons.math3.optimization.general with parameters of type ConvergenceCheckerModifierConstructorDescriptionprotectedDeprecated.protectedDeprecated.protectedDeprecated.GaussNewtonOptimizer(boolean useLU, ConvergenceChecker<PointVectorValuePair> checker) Deprecated.Deprecated.Simple constructor with default settings.LevenbergMarquardtOptimizer(double initialStepBoundFactor, ConvergenceChecker<PointVectorValuePair> checker, double costRelativeTolerance, double parRelativeTolerance, double orthoTolerance, double threshold) Deprecated.Constructor that allows the specification of a custom convergence checker, in addition to the standard ones.Deprecated.Constructor that allows the specification of a custom convergence checker.NonLinearConjugateGradientOptimizer(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker) Deprecated.Constructor with defaultline search solverandpreconditioner.NonLinearConjugateGradientOptimizer(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker, UnivariateSolver lineSearchSolver) Deprecated.Constructor with defaultpreconditioner.NonLinearConjugateGradientOptimizer(ConjugateGradientFormula updateFormula, ConvergenceChecker<PointValuePair> checker, UnivariateSolver lineSearchSolver, Preconditioner preconditioner) Deprecated. -
Uses of ConvergenceChecker in org.apache.commons.math3.optimization.univariate
Classes in org.apache.commons.math3.optimization.univariate that implement ConvergenceCheckerModifier and TypeClassDescriptionclassDeprecated.As of 3.1 (to be removed in 4.0).Methods in org.apache.commons.math3.optimization.univariate that return ConvergenceCheckerModifier and TypeMethodDescriptionBaseAbstractUnivariateOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.UnivariateMultiStartOptimizer.getConvergenceChecker()Deprecated.Get the convergence checker.Constructors in org.apache.commons.math3.optimization.univariate with parameters of type ConvergenceCheckerModifierConstructorDescriptionprotectedDeprecated.BrentOptimizer(double rel, double abs, ConvergenceChecker<UnivariatePointValuePair> checker) Deprecated.The arguments are used implement the original stopping criterion of Brent's algorithm.