Uses of Interface
org.hipparchus.analysis.solvers.BracketedUnivariateSolver
-
Packages that use BracketedUnivariateSolver Package Description org.hipparchus.analysis.solvers Root finding algorithms, for univariate real functions.org.hipparchus.ode.events Events -
-
Uses of BracketedUnivariateSolver in org.hipparchus.analysis.solvers
Classes in org.hipparchus.analysis.solvers that implement BracketedUnivariateSolver Modifier and Type Class Description class
BaseSecantSolver
Base class for all bracketing Secant-based methods for root-finding (approximating a zero of a univariate real function).class
BracketingNthOrderBrentSolver
This class implements a modification of the Brent algorithm.class
IllinoisSolver
Implements the Illinois method for root-finding (approximating a zero of a univariate real function).class
PegasusSolver
Implements the Pegasus method for root-finding (approximating a zero of a univariate real function).class
RegulaFalsiSolver
Implements the Regula Falsi or False position method for root-finding (approximating a zero of a univariate real function).Methods in org.hipparchus.analysis.solvers with parameters of type BracketedUnivariateSolver Modifier and Type Method Description static 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
Methods in org.hipparchus.ode.events that return BracketedUnivariateSolver Modifier and Type Method Description BracketedUnivariateSolver<UnivariateFunction>
AbstractODEDetector. getSolver()
Get the root-finding algorithm to use to detect state events.BracketedUnivariateSolver<UnivariateFunction>
ODEEventDetector. getSolver()
Get the root-finding algorithm to use to detect state events.Methods in org.hipparchus.ode.events with parameters of type BracketedUnivariateSolver Modifier and Type Method Description protected 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.T
AbstractODEDetector. withSolver(BracketedUnivariateSolver<UnivariateFunction> newSolver)
Setup the root-finding algorithm to use to detect state events.Constructors in org.hipparchus.ode.events with parameters of type BracketedUnivariateSolver Constructor Description AbstractODEDetector(AdaptableInterval maxCheck, int maxIter, BracketedUnivariateSolver<UnivariateFunction> solver, ODEEventHandler handler)
Build a new instance.
-