Home
last modified time | relevance | path

Searched refs:MaxIterationsExceededException (Results 1 – 24 of 24) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
DBisectionSolver.java20 import org.apache.commons.math.MaxIterationsExceededException;
59 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
66 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
76 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
83 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
90 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
101 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
131 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
DNewtonSolver.java22 import org.apache.commons.math.MaxIterationsExceededException;
63 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
70 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
89 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
109 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
130 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
152 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
177 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
DBrentSolver.java22 import org.apache.commons.math.MaxIterationsExceededException;
98 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
105 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
131 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
198 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
223 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
283 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
307 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
397 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
DSecantSolver.java22 import org.apache.commons.math.MaxIterationsExceededException;
99 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
121 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
140 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
160 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
227 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
DMullerSolver.java21 import org.apache.commons.math.MaxIterationsExceededException;
97 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
121 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
165 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
198 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
278 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
309 throws MaxIterationsExceededException, FunctionEvaluationException { in solve2()
342 throws MaxIterationsExceededException, FunctionEvaluationException { in solve2()
413 throw new MaxIterationsExceededException(maximalIterationCount); in solve2()
DRiddersSolver.java21 import org.apache.commons.math.MaxIterationsExceededException;
95 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
118 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
151 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
173 throws MaxIterationsExceededException, FunctionEvaluationException { in solve()
245 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
DLaguerreSolver.java22 import org.apache.commons.math.MaxIterationsExceededException;
312 MaxIterationsExceededException, FunctionEvaluationException { in solveAll()
362 MaxIterationsExceededException, FunctionEvaluationException { in solve()
432 throw new MaxIterationsExceededException(maximalIterationCount); in solve()
/external/apache-commons-math/src/main/java/org/apache/commons/math/
DMaxIterationsExceededException.java32 public class MaxIterationsExceededException extends ConvergenceException { class
44 public MaxIterationsExceededException(final int maxIterations) { in MaxIterationsExceededException() method in MaxIterationsExceededException
58 public MaxIterationsExceededException(final int maxIterations, in MaxIterationsExceededException() method in MaxIterationsExceededException
71 public MaxIterationsExceededException(final int maxIterations, in MaxIterationsExceededException() method in MaxIterationsExceededException
DConvergingAlgorithmImpl.java150 throws MaxIterationsExceededException { in incrementIterationsCounter()
152 throw new MaxIterationsExceededException(maximalIterationCount); in incrementIterationsCounter()
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
DSimpsonIntegrator.java21 import org.apache.commons.math.MaxIterationsExceededException;
62 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
68 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
98 throw new MaxIterationsExceededException(maximalIterationCount); in integrate()
DRombergIntegrator.java21 import org.apache.commons.math.MaxIterationsExceededException;
63 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
69 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
107 throw new MaxIterationsExceededException(maximalIterationCount); in integrate()
DTrapezoidIntegrator.java21 import org.apache.commons.math.MaxIterationsExceededException;
102 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
108 … throws MaxIterationsExceededException, FunctionEvaluationException, IllegalArgumentException { in integrate()
128 throw new MaxIterationsExceededException(maximalIterationCount); in integrate()
DLegendreGaussIntegrator.java22 import org.apache.commons.math.MaxIterationsExceededException;
200 throw new MaxIterationsExceededException(maximalIterationCount); in integrate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
DAbstractUnivariateRealOptimizer.java23 import org.apache.commons.math.MaxIterationsExceededException;
220 throws MaxIterationsExceededException, FunctionEvaluationException { in optimize()
252 throws MaxIterationsExceededException, FunctionEvaluationException { in optimize()
272 throws MaxIterationsExceededException, FunctionEvaluationException { in doOptimize()
DBrentOptimizer.java20 import org.apache.commons.math.MaxIterationsExceededException;
53 throws MaxIterationsExceededException, FunctionEvaluationException { in doOptimize()
85 throws MaxIterationsExceededException, FunctionEvaluationException { in localMin()
DBracketFinder.java21 import org.apache.commons.math.MaxIterationsExceededException;
123 throws MaxIterationsExceededException, FunctionEvaluationException { in search()
146 throw new MaxIterationsExceededException(maxIterations); in search()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
DAbstractLinearOptimizer.java22 import org.apache.commons.math.MaxIterationsExceededException;
99 throw new OptimizationException(new MaxIterationsExceededException(maxIterations)); in incrementIterationsCounter()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
DAbstractScalarDifferentiableOptimizer.java24 import org.apache.commons.math.MaxIterationsExceededException;
143 throw new OptimizationException(new MaxIterationsExceededException(maxIterations)); in incrementIterationsCounter()
DAbstractLeastSquaresOptimizer.java22 import org.apache.commons.math.MaxIterationsExceededException;
181 throw new OptimizationException(new MaxIterationsExceededException(maxIterations)); in incrementIterationsCounter()
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DContinuedFraction.java21 import org.apache.commons.math.MaxIterationsExceededException;
201 throw new MaxIterationsExceededException(maxIterations, in evaluate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/special/
DGamma.java20 import org.apache.commons.math.MaxIterationsExceededException;
188 throw new MaxIterationsExceededException(maxIterations); in regularizedGammaP()
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/direct/
DPowellOptimizer.java20 import org.apache.commons.math.MaxIterationsExceededException;
266 } catch (MaxIterationsExceededException e) { in search()
DDirectSearchOptimizer.java26 import org.apache.commons.math.MaxIterationsExceededException;
318 throw new OptimizationException(new MaxIterationsExceededException(maxIterations)); in incrementIterationsCounter()
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DEigenDecompositionImpl.java21 import org.apache.commons.math.MaxIterationsExceededException;
520 new MaxIterationsExceededException(maxIter)); in findEigenVectors()