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 This package provides classes to solve Ordinary Differential Equations problems.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 classBaseSecantSolverBase class for all bracketing Secant-based methods for root-finding (approximating a zero of a univariate real function).classBracketingNthOrderBrentSolverThis class implements a modification of the Brent algorithm.classIllinoisSolverImplements the Illinois method for root-finding (approximating a zero of a univariate real function).classPegasusSolverImplements the Pegasus method for root-finding (approximating a zero of a univariate real function).classRegulaFalsiSolverImplements 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 doubleUnivariateSolverUtils. 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
Methods in org.hipparchus.ode with parameters of type BracketedUnivariateSolver Modifier and Type Method Description voidAbstractIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)Add an event handler to the integrator.voidODEIntegrator. addEventHandler(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)Add an event handler to the integrator. - 
Uses of BracketedUnivariateSolver in org.hipparchus.ode.events
Constructors in org.hipparchus.ode.events with parameters of type BracketedUnivariateSolver Constructor Description EventState(ODEEventHandler handler, double maxCheckInterval, double convergence, int maxIterationCount, BracketedUnivariateSolver<UnivariateFunction> solver)Simple constructor. 
 -