Uses of Class
org.hipparchus.util.Incrementor
Packages that use Incrementor
Package
Description
Numerical integration (quadrature) algorithms for univariate real functions.
This package provides classes to solve Ordinary Differential Equations problems.
Generally, optimizers are algorithms that will either
minimize
or
maximize
a scalar function, called the
objective
function
.This package provides algorithms that minimize the residuals
between observations and model values.
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 IncrementorModifier and TypeFieldDescriptionprotected final Incrementor
BaseAbstractFieldUnivariateIntegrator.iterations
The iteration count.protected final Incrementor
BaseAbstractUnivariateIntegrator.iterations
The iteration count. -
Uses of Incrementor in org.hipparchus.ode
Methods in org.hipparchus.ode that return IncrementorModifier and TypeMethodDescriptionprotected 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 IncrementorModifier and TypeFieldDescriptionprotected Incrementor
BaseOptimizer.evaluations
Evaluations counter.protected Incrementor
BaseOptimizer.iterations
Iterations counter.Methods in org.hipparchus.optim that return IncrementorModifier and TypeMethodDescriptionAbstractOptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.OptimizationProblem.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.AbstractOptimizationProblem.getIterationCounter()
Get a independent Incrementor that counts up to the maximum number of iterations and then throws an exception.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 IncrementorModifier and TypeMethodDescriptionLeastSquaresAdapter.getEvaluationCounter()
Get a independent Incrementor that counts up to the maximum number of evaluations and then throws an exception.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 IncrementorModifier and TypeMethodDescriptionstatic 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 IncrementorModifier and TypeMethodDescriptionIncrementor.withCallback
(Incrementor.MaxCountExceededCallback cb) Creates a new instance with a given callback.Incrementor.withCount
(int value) Creates a new instance and set the counter to the given value.Incrementor.withMaximalCount
(int max) Creates a new instance with a given maximal count.