Uses of Class
org.apache.commons.math3.util.IntegerSequence.Incrementor
Packages that use IntegerSequence.Incrementor
Package
Description
Numerical integration (quadrature) algorithms for univariate real functions.
Root finding algorithms, for univariate real functions.
This package provides classes to solve Ordinary Differential Equations problems.
One-dimensional optimization algorithms.
Convenience routines and common data structures used throughout the commons-math library.
-
Uses of IntegerSequence.Incrementor in org.apache.commons.math3.analysis.integration
Fields in org.apache.commons.math3.analysis.integration declared as IntegerSequence.IncrementorModifier and TypeFieldDescriptionprivate IntegerSequence.Incrementor
BaseAbstractUnivariateIntegrator.count
The iteration count.private IntegerSequence.Incrementor
BaseAbstractUnivariateIntegrator.evaluations
The functions evaluation count. -
Uses of IntegerSequence.Incrementor in org.apache.commons.math3.analysis.solvers
Fields in org.apache.commons.math3.analysis.solvers declared as IntegerSequence.IncrementorModifier and TypeFieldDescriptionprivate IntegerSequence.Incrementor
BaseAbstractUnivariateSolver.evaluations
Evaluations counter.private IntegerSequence.Incrementor
FieldBracketingNthOrderBrentSolver.evaluations
Evaluations counter. -
Uses of IntegerSequence.Incrementor in org.apache.commons.math3.ode
Fields in org.apache.commons.math3.ode declared as IntegerSequence.IncrementorModifier and TypeFieldDescriptionprivate IntegerSequence.Incrementor
AbstractFieldIntegrator.evaluations
Counter for number of evaluations.private IntegerSequence.Incrementor
AbstractIntegrator.evaluations
Counter for number of evaluations.Methods in org.apache.commons.math3.ode that return IntegerSequence.IncrementorModifier and TypeMethodDescriptionprotected IntegerSequence.Incrementor
AbstractIntegrator.getCounter()
Get the evaluations counter.protected IntegerSequence.Incrementor
AbstractFieldIntegrator.getEvaluationsCounter()
Get the evaluations counter. -
Uses of IntegerSequence.Incrementor in org.apache.commons.math3.optim.univariate
Fields in org.apache.commons.math3.optim.univariate declared as IntegerSequence.IncrementorModifier and TypeFieldDescriptionprivate IntegerSequence.Incrementor
BracketFinder.evaluations
Counter for function evaluations. -
Uses of IntegerSequence.Incrementor in org.apache.commons.math3.util
Fields in org.apache.commons.math3.util declared as IntegerSequence.IncrementorModifier and TypeFieldDescriptionprivate IntegerSequence.Incrementor
IterationManager.iterations
Keeps a count of the number of iterations.Methods in org.apache.commons.math3.util that return IntegerSequence.IncrementorModifier and TypeMethodDescriptionstatic IntegerSequence.Incrementor
IntegerSequence.Incrementor.create()
Factory method that creates a default instance.IntegerSequence.Incrementor.withCallback
(IntegerSequence.Incrementor.MaxCountExceededCallback cb) Creates a new instance with a given callback.IntegerSequence.Incrementor.withIncrement
(int step) Creates a new instance with a given increment.IntegerSequence.Incrementor.withMaximalCount
(int max) Creates a new instance with a given maximal count.IntegerSequence.Incrementor.withStart
(int start) Creates a new instance with a given initial value.Methods in org.apache.commons.math3.util with parameters of type IntegerSequence.IncrementorModifier and TypeMethodDescriptionstatic Incrementor
Incrementor.wrap
(IntegerSequence.Incrementor incrementor) Deprecated.Create an instance that delegates everything to aIntegerSequence.Incrementor
.