Uses of Class
org.hipparchus.util.Incrementor
-
Packages that use Incrementor Package Description org.hipparchus.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.hipparchus.ode This package provides classes to solve Ordinary Differential Equations problems.org.hipparchus.optim Generally, optimizers are algorithms that will eitherminimize
ormaximize
a scalar function, called theobjective function
.org.hipparchus.optim.nonlinear.vector.leastsquares This package provides algorithms that minimize the residuals between observations and model values.org.hipparchus.util Convenience routines and common data structures used throughout the Hipparchus library. -
-
Uses of Incrementor in org.hipparchus.analysis.integration
Fields in org.hipparchus.analysis.integration declared as Incrementor Modifier and Type Field Description protected Incrementor
BaseAbstractUnivariateIntegrator. iterations
The iteration count. -
Uses of Incrementor in org.hipparchus.ode
Methods in org.hipparchus.ode that return Incrementor Modifier and Type Method Description protected Incrementor
AbstractFieldIntegrator. getEvaluationsCounter()
Get the evaluations counter.protected Incrementor
AbstractIntegrator. getEvaluationsCounter()
Get the evaluations counter. -
Uses of Incrementor in org.hipparchus.optim
Fields in org.hipparchus.optim declared as Incrementor Modifier and Type Field Description protected Incrementor
BaseOptimizer. evaluations
Evaluations counter.protected Incrementor
BaseOptimizer. iterations
Iterations counter.Methods in org.hipparchus.optim that return Incrementor Modifier and Type Method Description Incrementor
AbstractOptimizationProblem. getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.Incrementor
OptimizationProblem. getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.Incrementor
AbstractOptimizationProblem. getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.Incrementor
OptimizationProblem. getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception. -
Uses of Incrementor in org.hipparchus.optim.nonlinear.vector.leastsquares
Methods in org.hipparchus.optim.nonlinear.vector.leastsquares that return Incrementor Modifier and Type Method Description Incrementor
LeastSquaresAdapter. getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.Incrementor
LeastSquaresAdapter. getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.Methods in org.hipparchus.optim.nonlinear.vector.leastsquares with parameters of type Incrementor Modifier and Type Method Description static LeastSquaresProblem
LeastSquaresFactory. countEvaluations(LeastSquaresProblem problem, Incrementor counter)
Count the evaluations of a particular problem. -
Uses of Incrementor in org.hipparchus.util
Methods in org.hipparchus.util that return Incrementor Modifier and Type Method Description Incrementor
Incrementor. withCallback(Incrementor.MaxCountExceededCallback cb)
Creates a new instance with a given callback.Incrementor
Incrementor. withCount(int value)
Creates a new instance and set the counter to the given value.Incrementor
Incrementor. withMaximalCount(int max)
Creates a new instance with a given maximal count.
-