Uses of Enum
org.apache.commons.math3.analysis.solvers.AllowedSolution
Packages that use AllowedSolution
Package
Description
Root finding algorithms, for univariate real functions.
Decimal floating point library for Java
-
Uses of AllowedSolution in org.apache.commons.math3.analysis.solvers
Methods in org.apache.commons.math3.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.apache.commons.math3.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.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, RealFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution) Solve for a zero in the given interval.BracketedRealFieldUnivariateSolver.solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue.doubleBracketedUnivariateSolver.solve(int maxEval, FUNC f, double min, double max, double startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue.doubleBracketedUnivariateSolver.solve(int maxEval, FUNC 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, RealFieldUnivariateFunction<T> f, T min, T max, AllowedSolution allowedSolution) Solve for a zero in the given interval.FieldBracketingNthOrderBrentSolver.solve(int maxEval, RealFieldUnivariateFunction<T> f, T min, T max, T startValue, AllowedSolution allowedSolution) Solve for a zero in the given interval, start atstartValue. -
Uses of AllowedSolution in org.apache.commons.math3.dfp
Methods in org.apache.commons.math3.dfp with parameters of type AllowedSolutionModifier and TypeMethodDescriptionBracketingNthOrderBrentSolverDFP.solve(int maxEval, UnivariateDfpFunction f, Dfp min, Dfp max, AllowedSolution allowedSolution) Deprecated.Solve for a zero in the given interval.BracketingNthOrderBrentSolverDFP.solve(int maxEval, UnivariateDfpFunction f, Dfp min, Dfp max, Dfp startValue, AllowedSolution allowedSolution) Deprecated.Solve for a zero in the given interval, start atstartValue.