Uses of Interface
org.hipparchus.optim.ConvergenceChecker
Packages that use ConvergenceChecker
Package
Description
  Generally, optimizers are algorithms that will either
  
minimize or
  maximize
  a scalar function, called the
  objective
  function.Algorithms for optimizing a scalar function.
This package provides optimization algorithms that require derivatives.
This package provides optimization algorithms that do not require derivatives.
This package provides algorithms that minimize the residuals
 between observations and model values.
This package provides algorithms that minimize the residuals
 between observations and model values.
One-dimensional optimization algorithms.
- 
Uses of ConvergenceChecker in org.hipparchus.optim
Classes in org.hipparchus.optim that implement ConvergenceCheckerModifier and TypeClassDescriptionclassBase class for all convergence checker implementations.classMultiplexer forConvergenceChecker, checking all the checkers converged.classMultiplexer forConvergenceChecker, checking one of the checkers converged.classSimplePointChecker<P extends Pair<double[],? extends Object>> Simple implementation of theConvergenceCheckerinterface using only point coordinates.classSimple implementation of theConvergenceCheckerinterface using only objective function values.classSimple implementation of theConvergenceCheckerinterface using only objective function values.Methods in org.hipparchus.optim that return ConvergenceCheckerModifier and TypeMethodDescriptionAbstractOptimizationProblem.getConvergenceChecker()Gets the convergence checker.BaseOptimizer.getConvergenceChecker()Gets the convergence checker.OptimizationProblem.getConvergenceChecker()Gets the convergence checker.Constructors in org.hipparchus.optim with parameters of type ConvergenceCheckerModifierConstructorDescriptionprotectedAbstractOptimizationProblem(int maxEvaluations, int maxIterations, ConvergenceChecker<P> checker) Create anAbstractOptimizationProblemfrom the given data.protectedBaseMultivariateOptimizer(ConvergenceChecker<P> checker) Simple constructor.protectedBaseOptimizer(ConvergenceChecker<P> checker) Simple constructor.protectedBaseOptimizer(ConvergenceChecker<P> checker, int maxEval, int maxIter) Simple constructor.Constructor parameters in org.hipparchus.optim with type arguments of type ConvergenceCheckerModifierConstructorDescriptionConvergenceCheckerAndMultiplexer(List<ConvergenceChecker<P>> checkers) Simple constructor.ConvergenceCheckerOrMultiplexer(List<ConvergenceChecker<P>> checkers) Simple constructor. - 
Uses of ConvergenceChecker in org.hipparchus.optim.nonlinear.scalar
Constructors in org.hipparchus.optim.nonlinear.scalar with parameters of type ConvergenceCheckerModifierConstructorDescriptionprotectedSimple constructor.protectedSimple constructor. - 
Uses of ConvergenceChecker in org.hipparchus.optim.nonlinear.scalar.gradient
Constructors in org.hipparchus.optim.nonlinear.scalar.gradient with parameters of type ConvergenceCheckerModifierConstructorDescriptionNonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker) Constructor with default tolerances for the line search (1e-8) andpreconditioner.NonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker, double relativeTolerance, double absoluteTolerance, double initialBracketingRange) Constructor with defaultpreconditioner.NonLinearConjugateGradientOptimizer(NonLinearConjugateGradientOptimizer.Formula updateFormula, ConvergenceChecker<PointValuePair> checker, double relativeTolerance, double absoluteTolerance, double initialBracketingRange, Preconditioner preconditioner) Simple constructor. - 
Uses of ConvergenceChecker in org.hipparchus.optim.nonlinear.scalar.noderiv
Constructors in org.hipparchus.optim.nonlinear.scalar.noderiv with parameters of type ConvergenceCheckerModifierConstructorDescriptionCMAESOptimizer(int maxIterations, double stopFitness, boolean isActiveCMA, int diagonalOnly, int checkFeasableCount, RandomGenerator random, boolean generateStatistics, ConvergenceChecker<PointValuePair> checker) Simple constructor.PowellOptimizer(double rel, double abs, double lineRel, double lineAbs, ConvergenceChecker<PointValuePair> checker) 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) 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) Simple constructor. - 
Uses of ConvergenceChecker in org.hipparchus.optim.nonlinear.vector.constrained
Classes in org.hipparchus.optim.nonlinear.vector.constrained that implement ConvergenceCheckerModifier and TypeClassDescriptionclassConvergence Checker for ADMM QP Optimizer.Methods in org.hipparchus.optim.nonlinear.vector.constrained that return ConvergenceCheckerModifier and TypeMethodDescriptionADMMQPOptimizer.getConvergenceChecker()Gets the convergence checker. - 
Uses of ConvergenceChecker in org.hipparchus.optim.nonlinear.vector.leastsquares
Classes in org.hipparchus.optim.nonlinear.vector.leastsquares that implement ConvergenceCheckerModifier and TypeClassDescriptionclassCheck if an optimization has converged based on the change in computed RMS.Methods in org.hipparchus.optim.nonlinear.vector.leastsquares that return ConvergenceCheckerModifier and TypeMethodDescriptionLeastSquaresFactory.evaluationChecker(ConvergenceChecker<PointVectorValuePair> checker) View a convergence checker specified for aPointVectorValuePairas one specified for anLeastSquaresProblem.Evaluation.LeastSquaresAdapter.getConvergenceChecker()Gets the convergence checker.Methods in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type ConvergenceCheckerModifier and TypeMethodDescriptionLeastSquaresBuilder.checker(ConvergenceChecker<LeastSquaresProblem.Evaluation> newChecker) Configure the convergence checker.LeastSquaresBuilder.checkerPair(ConvergenceChecker<PointVectorValuePair> newChecker) Configure the convergence checker.static LeastSquaresProblemLeastSquaresFactory.create(MultivariateVectorFunction model, MultivariateMatrixFunction jacobian, double[] observed, double[] start, RealMatrix weight, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations) Create aLeastSquaresProblemfrom the given elements.static LeastSquaresProblemLeastSquaresFactory.create(MultivariateJacobianFunction model, RealVector observed, RealVector start, RealMatrix weight, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations) Create aLeastSquaresProblemfrom the given elements.static LeastSquaresProblemLeastSquaresFactory.create(MultivariateJacobianFunction model, RealVector observed, RealVector start, RealMatrix weight, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations, boolean lazyEvaluation, ParameterValidator paramValidator) Create aLeastSquaresProblemfrom the given elements.static LeastSquaresProblemLeastSquaresFactory.create(MultivariateJacobianFunction model, RealVector observed, RealVector start, ConvergenceChecker<LeastSquaresProblem.Evaluation> checker, int maxEvaluations, int maxIterations) Create aLeastSquaresProblemfrom the given elements.LeastSquaresFactory.evaluationChecker(ConvergenceChecker<PointVectorValuePair> checker) View a convergence checker specified for aPointVectorValuePairas one specified for anLeastSquaresProblem.Evaluation. - 
Uses of ConvergenceChecker in org.hipparchus.optim.univariate
Classes in org.hipparchus.optim.univariate that implement ConvergenceCheckerModifier and TypeClassDescriptionclassSimple implementation of theConvergenceCheckerinterface that uses only objective function values.Constructors in org.hipparchus.optim.univariate with parameters of type ConvergenceCheckerModifierConstructorDescriptionBrentOptimizer(double rel, double abs, ConvergenceChecker<UnivariatePointValuePair> checker) The arguments are used implement the original stopping criterion of Brent's algorithm.protectedSimple constructor.