HomeSort by relevance Sort by last modified time
    Searched refs:ConvergenceException (Results 1 - 25 of 25) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
ConvergenceException.java 29 public class ConvergenceException extends MathIllegalStateException {
36 public ConvergenceException() {
44 public ConvergenceException(Localizable specific) {
55 public ConvergenceException(Localizable specific,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
ConvergenceException.java 29 public class ConvergenceException extends MathException {
37 public ConvergenceException() {
47 * @deprecated as of 2.2 replaced by {@link #ConvergenceException(Localizable, Object...)}
50 public ConvergenceException(String pattern, Object ... arguments) {
61 public ConvergenceException(Localizable pattern, Object ... arguments) {
69 public ConvergenceException(Throwable cause) {
80 * @deprecated as of 2.2 replaced by {@link #ConvergenceException(Throwable, Localizable, Object...)}
83 public ConvergenceException(Throwable cause, String pattern, Object ... arguments) {
95 public ConvergenceException(Throwable cause, Localizable pattern, Object ... arguments) {
MaxEvaluationsExceededException.java 20 import org.apache.commons.math.ConvergenceException;
32 public class MaxEvaluationsExceededException extends ConvergenceException {
MaxIterationsExceededException.java 20 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/
UnivariateRealSolver.java 19 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;
UnivariateRealSolverUtils.java 19 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, FunctionEvaluationException
    [all...]
LaguerreSolver.java 19 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 if the maximum iteration count is exceede
    [all...]
RiddersSolver.java 19 import org.apache.commons.math.ConvergenceException;
66 throws ConvergenceException, FunctionEvaluationException {
73 throws ConvergenceException, FunctionEvaluationException {
SecantSolver.java 19 import org.apache.commons.math.ConvergenceException;
71 throws ConvergenceException, FunctionEvaluationException {
78 throws ConvergenceException, FunctionEvaluationException {
UnivariateRealSolverImpl.java 25 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 {
MullerSolver.java 19 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/
UnivariateRealIntegrator.java 19 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;
LegendreGaussIntegrator.java 19 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/
UnivariateRealOptimizer.java 19 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;
OptimizationException.java 20 import org.apache.commons.math.ConvergenceException;
32 public class OptimizationException extends ConvergenceException {
MultiStartUnivariateRealOptimizer.java 20 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/
FractionConversionException.java 20 import org.apache.commons.math.ConvergenceException;
30 public class FractionConversionException extends ConvergenceException {
FractionFormat.java 26 import org.apache.commons.math.ConvergenceException;
182 } catch (ConvergenceException ex) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
ContinuedFraction.java 19 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/
KMeansPlusPlusClusterer.java 25 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/
AbstractContinuousDistribution.java 21 import org.apache.commons.math.ConvergenceException;
121 } catch (ConvergenceException ex) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
CombinedEventsManager.java 25 import org.apache.commons.math.ConvergenceException;
176 } catch (ConvergenceException ce) {
EventState.java 20 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/
NonLinearConjugateGradientOptimizer.java 20 import org.apache.commons.math.ConvergenceException;
210 } catch (ConvergenceException ce) {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
AbstractIntegrator.java 29 import org.apache.commons.math.ConvergenceException;
342 } catch (ConvergenceException ce) {

Completed in 945 milliseconds