Uses of Class
org.apache.commons.math3.exception.TooManyEvaluationsException
-
Packages that use TooManyEvaluationsException Package Description org.apache.commons.math3.analysis.integration Numerical integration (quadrature) algorithms for univariate real functions.org.apache.commons.math3.analysis.solvers Root finding algorithms, for univariate real functions.org.apache.commons.math3.optim Generally, optimizers are algorithms that will eitherminimizeormaximizea scalar function, called theobjective function.org.apache.commons.math3.optim.nonlinear.scalar Algorithms for optimizing a scalar function.org.apache.commons.math3.optim.nonlinear.scalar.gradient This package provides optimization algorithms that require derivatives.org.apache.commons.math3.optim.nonlinear.scalar.noderiv This package provides optimization algorithms that do not require derivatives.org.apache.commons.math3.optim.nonlinear.vector Algorithms for optimizing a vector function.org.apache.commons.math3.optim.nonlinear.vector.jacobian This package provides optimization algorithms that require derivatives.org.apache.commons.math3.optim.univariate One-dimensional optimization algorithms.org.apache.commons.math3.optimization.direct This package provides optimization algorithms that don't require derivatives. -
-
Uses of TooManyEvaluationsException in org.apache.commons.math3.analysis.integration
Methods in org.apache.commons.math3.analysis.integration that throw TooManyEvaluationsException Modifier and Type Method Description protected doubleBaseAbstractUnivariateIntegrator. computeObjectiveValue(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleIterativeLegendreGaussIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleLegendreGaussIntegrator. doIntegrate()Deprecated.Method for implementing actual integration algorithms in derived classes.protected doubleMidPointIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleRombergIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleSimpsonIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.protected doubleTrapezoidIntegrator. doIntegrate()Method for implementing actual integration algorithms in derived classes.doubleBaseAbstractUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double lower, double upper)Integrate the function in the given interval.doubleUnivariateIntegrator. integrate(int maxEval, UnivariateFunction f, double min, double max)Integrate the function in the given interval.private doubleIterativeLegendreGaussIntegrator. stage(int n)Compute the n-th stage integral.private doubleLegendreGaussIntegrator. stage(int n)Deprecated.Compute the n-th stage integral.private doubleMidPointIntegrator. stage(int n, double previousStageResult, double min, double diffMaxMin)Compute the n-th stage integral of midpoint rule.(package private) doubleTrapezoidIntegrator. stage(BaseAbstractUnivariateIntegrator baseIntegrator, int n)Compute the n-th stage integral of trapezoid rule. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.analysis.solvers
Methods in org.apache.commons.math3.analysis.solvers that throw TooManyEvaluationsException Modifier and Type Method Description protected doubleAbstractDifferentiableUnivariateSolver. computeDerivativeObjectiveValue(double point)Deprecated.Compute the objective function value.protected doubleBaseAbstractUnivariateSolver. computeObjectiveValue(double point)Compute the objective function value.protected DerivativeStructureAbstractUnivariateDifferentiableSolver. computeObjectiveValueAndDerivative(double point)Compute the objective function value.protected abstract doubleBaseAbstractUnivariateSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBisectionSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBracketingNthOrderBrentSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleBrentSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.doubleLaguerreSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleMullerSolver2. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleNewtonRaphsonSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleNewtonSolver. doSolve()Deprecated.Method for implementing actual optimization algorithms in derived classes.protected doubleRiddersSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected doubleSecantSolver. doSolve()Method for implementing actual optimization algorithms in derived classes.protected voidBaseAbstractUnivariateSolver. incrementEvaluationCount()Increment the evaluation count by one.doubleBaseAbstractUnivariateSolver. solve(int maxEval, FUNC f, double startValue)Solve for a zero in the vicinity ofstartValue.doubleBaseAbstractUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.doubleBaseUnivariateSolver. solve(int maxEval, FUNC f, double min, double max)Solve for a zero root in the given interval.doubleBaseUnivariateSolver. solve(int maxEval, FUNC f, double min, double max, double startValue)Solve for a zero in the given interval, start atstartValue.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.ComplexLaguerreSolver.ComplexSolver. solve(Complex[] coefficients, Complex initial)Find a complex root for the polynomial with the given coefficients, starting from the given initial value.private doubleMullerSolver. solve(double min, double max, double fMin, double fMax)Find a real root in the given interval.doubleNewtonRaphsonSolver. solve(int maxEval, UnivariateDifferentiableFunction f, double min, double max)Find a zero near the midpoint ofminandmax.doubleNewtonSolver. solve(int maxEval, DifferentiableUnivariateFunction f, double min, double max)Deprecated.Find a zero near the midpoint ofminandmax.Complex[]LaguerreSolver.ComplexSolver. solveAll(Complex[] coefficients, Complex initial)Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.Complex[]LaguerreSolver. solveAllComplex(double[] coefficients, double initial)Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.Complex[]LaguerreSolver. solveAllComplex(double[] coefficients, double initial, int maxEval)Find all complex roots for the polynomial with the given coefficients, starting from the given initial value.ComplexLaguerreSolver. solveComplex(double[] coefficients, double initial)Find a complex root for the polynomial with the given coefficients, starting from the given initial value.ComplexLaguerreSolver. solveComplex(double[] coefficients, double initial, int maxEval)Find a complex root for the polynomial with the given coefficients, starting from the given initial value. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim
Methods in org.apache.commons.math3.optim that throw TooManyEvaluationsException Modifier and Type Method Description protected voidBaseOptimizer. incrementEvaluationCount()Increment the evaluation count.PAIRBaseOptimizer. optimize()Performs the optimization.PAIRBaseOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.nonlinear.scalar
Methods in org.apache.commons.math3.optim.nonlinear.scalar that throw TooManyEvaluationsException Modifier and Type Method Description PointValuePairGradientMultivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization.PointValuePairMultivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.nonlinear.scalar.gradient
Methods in org.apache.commons.math3.optim.nonlinear.scalar.gradient that throw TooManyEvaluationsException Modifier and Type Method Description PointValuePairNonLinearConjugateGradientOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.nonlinear.scalar.noderiv
Methods in org.apache.commons.math3.optim.nonlinear.scalar.noderiv that throw TooManyEvaluationsException Modifier and Type Method Description PointValuePairCMAESOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.nonlinear.vector
Methods in org.apache.commons.math3.optim.nonlinear.vector that throw TooManyEvaluationsException Modifier and Type Method Description PointVectorValuePairJacobianMultivariateVectorOptimizer. optimize(OptimizationData... optData)Deprecated.Stores data and performs the optimization.PointVectorValuePairMultivariateVectorOptimizer. optimize(OptimizationData... optData)Deprecated.Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.nonlinear.vector.jacobian
Methods in org.apache.commons.math3.optim.nonlinear.vector.jacobian that throw TooManyEvaluationsException Modifier and Type Method Description PointVectorValuePairAbstractLeastSquaresOptimizer. optimize(OptimizationData... optData)Deprecated.Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optim.univariate
Methods in org.apache.commons.math3.optim.univariate that throw TooManyEvaluationsException Modifier and Type Method Description UnivariatePointValuePairUnivariateOptimizer. optimize(OptimizationData... optData)Stores data and performs the optimization. -
Uses of TooManyEvaluationsException in org.apache.commons.math3.optimization.direct
Methods in org.apache.commons.math3.optimization.direct that throw TooManyEvaluationsException Modifier and Type Method Description protected PointVectorValuePairBaseAbstractMultivariateVectorOptimizer. optimize(int maxEval, FUNC f, OptimizationData... optData)Deprecated.Optimize an objective function.protected PointValuePairBaseAbstractMultivariateOptimizer. optimizeInternal(int maxEval, FUNC f, GoalType goalType, OptimizationData... optData)Deprecated.Optimize an objective function.protected PointVectorValuePairBaseAbstractMultivariateVectorOptimizer. optimizeInternal(int maxEval, FUNC f, OptimizationData... optData)Deprecated.Optimize an objective function.
-