Uses of Enum
org.hipparchus.analysis.solvers.AllowedSolution
Package
Description
Root finding algorithms, for univariate real functions.
-
Uses of AllowedSolution in org.hipparchus.analysis.solvers
Modifier and TypeMethodDescriptionstatic AllowedSolution
Returns the enum constant of this type with the specified name.static AllowedSolution[]
AllowedSolution.values()
Returns an array containing the constants of this enum type, in the order they are declared.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.BracketedRealFieldUnivariateSolver.Interval.getSide
(AllowedSolution allowed) Get the abscissa corresponding to the allowed side.double
BracketedUnivariateSolver.Interval.getSide
(AllowedSolution allowed) Get the abscissa corresponding to the allowed side.double
BaseSecantSolver.solve
(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue
.double
BaseSecantSolver.solve
(int maxEval, UnivariateFunction f, double min, double max, AllowedSolution allowedSolution) Solve for a zero in the given interval.BracketedRealFieldUnivariateSolver.solve
(int maxEval, CalculusFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution) Solve for a zero in the given interval.BracketedRealFieldUnivariateSolver.solve
(int maxEval, CalculusFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue
.double
BracketedUnivariateSolver.solve
(int maxEval, F f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue
.double
BracketedUnivariateSolver.solve
(int maxEval, F f, double min, double max, AllowedSolution allowedSolution) Solve for a zero in the given interval.double
BracketingNthOrderBrentSolver.solve
(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue
.double
BracketingNthOrderBrentSolver.solve
(int maxEval, UnivariateFunction f, double min, double max, AllowedSolution allowedSolution) Solve for a zero in the given interval.FieldBracketingNthOrderBrentSolver.solve
(int maxEval, CalculusFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution) Solve for a zero in the given interval.FieldBracketingNthOrderBrentSolver.solve
(int maxEval, CalculusFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue
.