Uses of Class
org.hipparchus.util.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
Modifier and TypeFieldDescriptionprotected final Incrementor
BaseAbstractFieldUnivariateIntegrator.iterations
The iteration count.protected final Incrementor
BaseAbstractUnivariateIntegrator.iterations
The iteration count. -
Uses of Incrementor in org.hipparchus.ode
Modifier and TypeMethodDescriptionprotected Incrementor
AbstractFieldIntegrator.getEvaluationsCounter()
Get the evaluations counter.protected Incrementor
AbstractIntegrator.getEvaluationsCounter()
Get the evaluations counter. -
Uses of Incrementor in org.hipparchus.optim
Modifier and TypeFieldDescriptionprotected Incrementor
BaseOptimizer.evaluations
Evaluations counter.protected Incrementor
BaseOptimizer.iterations
Iterations counter.Modifier 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
Modifier 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.Modifier and TypeMethodDescriptionstatic LeastSquaresProblem
LeastSquaresFactory.countEvaluations
(LeastSquaresProblem problem, Incrementor counter) Count the evaluations of a particular problem. -
Uses of Incrementor in org.hipparchus.util
Modifier 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.