Uses of Interface
org.hipparchus.analysis.solvers.BracketedUnivariateSolver
Package
Description
Root finding algorithms, for univariate real functions.
Events
-
Uses of BracketedUnivariateSolver in org.hipparchus.analysis.solvers
Modifier and TypeClassDescriptionclass
Base class for all bracketing Secant-based methods for root-finding (approximating a zero of a univariate real function).class
This class implements a modification of the Brent algorithm.class
Implements the Illinois method for root-finding (approximating a zero of a univariate real function).class
Implements the Pegasus method for root-finding (approximating a zero of a univariate real function).class
Implements the Regula Falsi or False position method for root-finding (approximating a zero of a univariate real function).Modifier and TypeMethodDescriptionstatic double
UnivariateSolverUtils.forceSide
(int maxEval, UnivariateFunction f, BracketedUnivariateSolver<UnivariateFunction> bracketing, double baseRoot, double min, double max, AllowedSolution allowedSolution) Force a root found by a non-bracketing solver to lie on a specified side, as if the solver were a bracketing one. -
Uses of BracketedUnivariateSolver in org.hipparchus.ode.events
Modifier and TypeMethodDescriptionAbstractODEDetector.getSolver()
Get the root-finding algorithm to use to detect state events.ODEEventDetector.getSolver()
Get the root-finding algorithm to use to detect state events.Modifier and TypeMethodDescriptionprotected abstract T
AbstractODEDetector.create
(AdaptableInterval newMaxCheck, int newmaxIter, BracketedUnivariateSolver<UnivariateFunction> newSolver, ODEEventHandler newHandler) Build a new instance.protected EventSlopeFilter<T>
EventSlopeFilter.create
(AdaptableInterval newMaxCheck, int newMaxIter, BracketedUnivariateSolver<UnivariateFunction> newSolver, ODEEventHandler newHandler) Build a new instance.AbstractODEDetector.withSolver
(BracketedUnivariateSolver<UnivariateFunction> newSolver) Setup the root-finding algorithm to use to detect state events.ModifierConstructorDescriptionprotected
AbstractODEDetector
(AdaptableInterval maxCheck, int maxIter, BracketedUnivariateSolver<UnivariateFunction> solver, ODEEventHandler handler) Build a new instance.