Java Code Examples for org.apache.commons.math3.exception.MaxCountExceededException#getMax()

The following examples show how to use org.apache.commons.math3.exception.MaxCountExceededException#getMax() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BaseAbstractMultivariateVectorOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
protected double[] computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 2
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 3
Source File: BaseAbstractUnivariateSolver.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Increment the evaluation count by one.
 * Method {@link #computeObjectiveValue(double)} calls this method internally.
 * It is provided for subclasses that do not exclusively use
 * {@code computeObjectiveValue} to solve the function.
 * See e.g. {@link AbstractDifferentiableUnivariateSolver}.
 */
protected void incrementEvaluationCount() {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
}
 
Example 4
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 5
Source File: BaseAbstractUnivariateSolver.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Increment the evaluation count by one.
 * Method {@link #computeObjectiveValue(double)} calls this method internally.
 * It is provided for subclasses that do not exclusively use
 * {@code computeObjectiveValue} to solve the function.
 * See e.g. {@link AbstractDifferentiableUnivariateSolver}.
 */
protected void incrementEvaluationCount() {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
}
 
Example 6
Source File: BaseAbstractMultivariateOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 7
Source File: BaseAbstractUnivariateOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at specified point.
 * @throws TooManyEvaluationsException if the maximal number of evaluations
 * is exceeded.
 */
protected double computeObjectiveValue(double point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 8
Source File: BaseAbstractUnivariateIntegrator.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at specified point.
 * @throws TooManyEvaluationsException if the maximal number of function
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(final double point)
    throws TooManyEvaluationsException {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 9
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 10
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 11
Source File: BaseAbstractMultivariateOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 12
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 13
Source File: BracketFinder.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * @param f Function.
 * @param x Argument.
 * @return {@code f(x)}
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
private double eval(UnivariateFunction f, double x) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return f.value(x);
}
 
Example 14
Source File: BaseAbstractMultivariateOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 15
Source File: BaseAbstractUnivariateIntegrator.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at specified point.
 * @throws TooManyEvaluationsException if the maximal number of function
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(final double point)
    throws TooManyEvaluationsException {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 16
Source File: BaseAbstractMultivariateVectorOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of evaluations is
 * exceeded.
 */
protected double[] computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 17
Source File: BaseAbstractUnivariateIntegrator.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at specified point.
 * @throws TooManyEvaluationsException if the maximal number of function
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(final double point)
    throws TooManyEvaluationsException {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 18
Source File: BaseAbstractMultivariateOptimizer.java    From astor with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Compute the objective function value.
 *
 * @param point Point at which the objective function must be evaluated.
 * @return the objective function value at the specified point.
 * @throws TooManyEvaluationsException if the maximal number of
 * evaluations is exceeded.
 */
protected double computeObjectiveValue(double[] point) {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
    return function.value(point);
}
 
Example 19
Source File: BaseAbstractUnivariateSolver.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Increment the evaluation count by one.
 * Method {@link #computeObjectiveValue(double)} calls this method internally.
 * It is provided for subclasses that do not exclusively use
 * {@code computeObjectiveValue} to solve the function.
 * See e.g. {@link AbstractUnivariateDifferentiableSolver}.
 *
 * @throws TooManyEvaluationsException when the allowed number of function
 * evaluations has been exhausted.
 */
protected void incrementEvaluationCount()
    throws TooManyEvaluationsException {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
}
 
Example 20
Source File: BaseAbstractUnivariateSolver.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Increment the evaluation count by one.
 * Method {@link #computeObjectiveValue(double)} calls this method internally.
 * It is provided for subclasses that do not exclusively use
 * {@code computeObjectiveValue} to solve the function.
 * See e.g. {@link AbstractUnivariateDifferentiableSolver}.
 *
 * @throws TooManyEvaluationsException when the allowed number of function
 * evaluations has been exhausted.
 */
protected void incrementEvaluationCount()
    throws TooManyEvaluationsException {
    try {
        evaluations.incrementCount();
    } catch (MaxCountExceededException e) {
        throw new TooManyEvaluationsException(e.getMax());
    }
}