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 eitherminimizeormaximizea 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 IncrementorBaseAbstractFieldUnivariateIntegrator. iterationsThe iteration count.protected IncrementorBaseAbstractUnivariateIntegrator. iterationsThe iteration count. -
Uses of Incrementor in org.hipparchus.ode
Methods in org.hipparchus.ode that return Incrementor Modifier and Type Method Description protected IncrementorAbstractFieldIntegrator. getEvaluationsCounter()Get the evaluations counter.protected IncrementorAbstractIntegrator. 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 IncrementorBaseOptimizer. evaluationsEvaluations counter.protected IncrementorBaseOptimizer. iterationsIterations counter.Methods in org.hipparchus.optim that return Incrementor Modifier and Type Method Description IncrementorAbstractOptimizationProblem. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorOptimizationProblem. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorAbstractOptimizationProblem. getIterationCounter()Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.IncrementorOptimizationProblem. 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 IncrementorLeastSquaresAdapter. getEvaluationCounter()Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.IncrementorLeastSquaresAdapter. 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 LeastSquaresProblemLeastSquaresFactory. 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 IncrementorIncrementor. withCallback(Incrementor.MaxCountExceededCallback cb)Creates a new instance with a given callback.IncrementorIncrementor. withCount(int value)Creates a new instance and set the counter to the given value.IncrementorIncrementor. withMaximalCount(int max)Creates a new instance with a given maximal count.
-