Uses of Enum
org.hipparchus.analysis.solvers.AllowedSolution
Packages that use AllowedSolution
Package
Description
Root finding algorithms, for univariate real functions.
-
Uses of AllowedSolution in org.hipparchus.analysis.solvers
Methods in org.hipparchus.analysis.solvers that return AllowedSolutionModifier and TypeMethodDescriptionstatic AllowedSolutionReturns 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.Methods in org.hipparchus.analysis.solvers with parameters of type AllowedSolutionModifier and TypeMethodDescriptionstatic 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.BracketedRealFieldUnivariateSolver.Interval.getSide(AllowedSolution allowed) Get the abscissa corresponding to the allowed side.doubleBracketedUnivariateSolver.Interval.getSide(AllowedSolution allowed) Get the abscissa corresponding to the allowed side.doubleBaseSecantSolver.solve(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue.doubleBaseSecantSolver.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.doubleBracketedUnivariateSolver.solve(int maxEval, F f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue.doubleBracketedUnivariateSolver.solve(int maxEval, F f, double min, double max, AllowedSolution allowedSolution) Solve for a zero in the given interval.doubleBracketingNthOrderBrentSolver.solve(int maxEval, UnivariateFunction f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue.doubleBracketingNthOrderBrentSolver.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.