Searched refs:ConvergenceException (Results 1 - 25 of 25) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
H A DConvergenceException.java29 public class ConvergenceException extends MathIllegalStateException { class in inherits:MathIllegalStateException
36 public ConvergenceException() { method in class:ConvergenceException
44 public ConvergenceException(Localizable specific) { method in class:ConvergenceException
55 public ConvergenceException(Localizable specific, method in class:ConvergenceException
/external/apache-commons-math/src/main/java/org/apache/commons/math/
H A DConvergenceException.java29 public class ConvergenceException extends MathException { class in inherits:MathException
37 public ConvergenceException() { method in class:ConvergenceException
47 * @deprecated as of 2.2 replaced by {@link #ConvergenceException(Localizable, Object...)}
50 public ConvergenceException(String pattern, Object ... arguments) { method in class:ConvergenceException
61 public ConvergenceException(Localizable pattern, Object ... arguments) { method in class:ConvergenceException
69 public ConvergenceException(Throwable cause) { method in class:ConvergenceException
80 * @deprecated as of 2.2 replaced by {@link #ConvergenceException(Throwable, Localizable, Object...)}
83 public ConvergenceException(Throwable cause, String pattern, Object ... arguments) { method in class:ConvergenceException
95 public ConvergenceException(Throwable cause, Localizable pattern, Object ... arguments) { method in class:ConvergenceException
H A DMaxEvaluationsExceededException.java20 import org.apache.commons.math.ConvergenceException;
32 public class MaxEvaluationsExceededException extends ConvergenceException {
H A DMaxIterationsExceededException.java20 import org.apache.commons.math.ConvergenceException;
32 public class MaxIterationsExceededException extends ConvergenceException {
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
H A DUnivariateRealSolver.java19 import org.apache.commons.math.ConvergenceException;
70 * @throws ConvergenceException if the maximum iteration count is exceeded
79 double solve(double min, double max) throws ConvergenceException, FunctionEvaluationException;
91 * @throws ConvergenceException if the maximum iteration count is exceeded
101 throws ConvergenceException, FunctionEvaluationException;
113 * @throws ConvergenceException if the maximum iteration count is exceeded
123 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException;
136 * @throws ConvergenceException if the maximum iteration count is exceeded
146 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException;
H A DUnivariateRealSolverUtils.java19 import org.apache.commons.math.ConvergenceException;
49 * @throws ConvergenceException if the iteration count was exceeded
55 throws ConvergenceException, FunctionEvaluationException {
69 * @throws ConvergenceException if the iteration count is exceeded
76 double absoluteAccuracy) throws ConvergenceException,
100 * -- ConvergenceException </li>
102 * -- ConvergenceException </li>
107 * <code>ConvergenceException.</code> Unless you are confident that there
120 * @throws ConvergenceException if a root can not be bracketted
127 throws ConvergenceException, FunctionEvaluationExceptio
[all...]
H A DLaguerreSolver.java19 import org.apache.commons.math.ConvergenceException;
93 throws ConvergenceException, FunctionEvaluationException {
100 throws ConvergenceException, FunctionEvaluationException {
115 * @throws ConvergenceException if the maximum iteration count is exceeded
123 throws ConvergenceException, FunctionEvaluationException {
138 * @throws ConvergenceException if the maximum iteration count is exceeded
147 throws ConvergenceException, FunctionEvaluationException {
184 * @throws ConvergenceException if the maximum iteration count is exceeded
192 throws ConvergenceException, FunctionEvaluationException {
210 * @throws ConvergenceException i
[all...]
H A DRiddersSolver.java19 import org.apache.commons.math.ConvergenceException;
66 throws ConvergenceException, FunctionEvaluationException {
73 throws ConvergenceException, FunctionEvaluationException {
H A DSecantSolver.java19 import org.apache.commons.math.ConvergenceException;
71 throws ConvergenceException, FunctionEvaluationException {
78 throws ConvergenceException, FunctionEvaluationException {
H A DUnivariateRealSolverImpl.java25 import org.apache.commons.math.ConvergenceException;
150 * @throws ConvergenceException if the maximum iteration count is exceeded
158 throws ConvergenceException, FunctionEvaluationException {
174 * @throws ConvergenceException if the maximum iteration count is exceeded
182 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException {
H A DMullerSolver.java19 import org.apache.commons.math.ConvergenceException;
67 throws ConvergenceException, FunctionEvaluationException {
74 throws ConvergenceException, FunctionEvaluationException {
/external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/integration/
H A DUnivariateRealIntegrator.java19 import org.apache.commons.math.ConvergenceException;
39 * A <code>ConvergenceException</code> will be thrown if this number
68 * @throws ConvergenceException if the maximum iteration count is exceeded
79 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException;
88 * @throws ConvergenceException if the maximum iteration count is exceeded
95 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException;
H A DLegendreGaussIntegrator.java19 import org.apache.commons.math.ConvergenceException;
160 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException {
166 throws ConvergenceException, FunctionEvaluationException, IllegalArgumentException {
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DUnivariateRealOptimizer.java19 import org.apache.commons.math.ConvergenceException;
64 * @throws ConvergenceException if the maximum iteration count is exceeded
72 throws ConvergenceException, FunctionEvaluationException;
86 * @throws ConvergenceException if the maximum iteration count is exceeded
95 throws ConvergenceException, FunctionEvaluationException;
H A DOptimizationException.java20 import org.apache.commons.math.ConvergenceException;
32 public class OptimizationException extends ConvergenceException {
H A DMultiStartUnivariateRealOptimizer.java20 import org.apache.commons.math.ConvergenceException;
185 * ConvergenceException ConvergenceException}). This also means that
211 * ConvergenceException ConvergenceException}). This also means that
229 throws ConvergenceException, FunctionEvaluationException {
251 } catch (ConvergenceException ce) {
315 throws ConvergenceException, FunctionEvaluationException {
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DFractionConversionException.java20 import org.apache.commons.math.ConvergenceException;
30 public class FractionConversionException extends ConvergenceException {
H A DFractionFormat.java26 import org.apache.commons.math.ConvergenceException;
182 } catch (ConvergenceException ex) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DContinuedFraction.java19 import org.apache.commons.math.ConvergenceException;
146 * up to 5th power. Throw ConvergenceException if one or both
154 throw new ConvergenceException(
178 throw new ConvergenceException(
186 throw new ConvergenceException(
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DKMeansPlusPlusClusterer.java25 import org.apache.commons.math.exception.ConvergenceException;
117 throw new ConvergenceException(LocalizedFormats.EMPTY_CLUSTER_IN_K_MEANS);
232 throw new ConvergenceException(LocalizedFormats.EMPTY_CLUSTER_IN_K_MEANS);
266 throw new ConvergenceException(LocalizedFormats.EMPTY_CLUSTER_IN_K_MEANS);
304 throw new ConvergenceException(LocalizedFormats.EMPTY_CLUSTER_IN_K_MEANS);
/external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
H A DAbstractContinuousDistribution.java21 import org.apache.commons.math.ConvergenceException;
121 } catch (ConvergenceException ex) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
H A DCombinedEventsManager.java25 import org.apache.commons.math.ConvergenceException;
176 } catch (ConvergenceException ce) {
H A DEventState.java20 import org.apache.commons.math.ConvergenceException;
196 * @exception ConvergenceException if an event cannot be located
199 throws DerivativeException, EventException, ConvergenceException {
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/general/
H A DNonLinearConjugateGradientOptimizer.java20 import org.apache.commons.math.ConvergenceException;
210 } catch (ConvergenceException ce) {
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
H A DAbstractIntegrator.java29 import org.apache.commons.math.ConvergenceException;
342 } catch (ConvergenceException ce) {

Completed in 334 milliseconds