Java Code Examples for org.apache.commons.math3.exception.util.LocalizedFormats#DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN

The following examples show how to use org.apache.commons.math3.exception.util.LocalizedFormats#DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN . 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: Arja_00165_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 2
Source File: Cardumen_00212_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 3
Source File: JGenProg2017_0088_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 4
Source File: JGenProg2017_00110_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 5
Source File: Cardumen_00106_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 6
Source File: jMutRepair_0024_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 7
Source File: Arja_0078_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 8
Source File: AbstractIntegerDistribution.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 9
Source File: jMutRepair_008_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 10
Source File: AbstractIntegerDistribution.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 11
Source File: Elixir_0020_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 12
Source File: JGenProg2017_00130_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 13
Source File: jMutRepair_0041_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 14
Source File: JGenProg2017_0058_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 15
Source File: JGenProg2017_0088_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 16
Source File: Arja_00176_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 17
Source File: AbstractIntegerDistribution.java    From astor with GNU General Public License v2.0 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 18
Source File: Arja_00153_s.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 19
Source File: Arja_00153_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}
 
Example 20
Source File: Arja_00123_t.java    From coming with MIT License 3 votes vote down vote up
/**
 * Computes the cumulative probability function and checks for {@code NaN}
 * values returned. Throws {@code MathInternalError} if the value is
 * {@code NaN}. Rethrows any exception encountered evaluating the cumulative
 * probability function. Throws {@code MathInternalError} if the cumulative
 * probability function returns {@code NaN}.
 *
 * @param argument input value
 * @return the cumulative probability
 * @throws MathInternalError if the cumulative probability is {@code NaN}
 */
private double checkedCumulativeProbability(int argument)
    throws MathInternalError {
    double result = Double.NaN;
    result = cumulativeProbability(argument);
    if (Double.isNaN(result)) {
        throw new MathInternalError(LocalizedFormats
                .DISCRETE_CUMULATIVE_PROBABILITY_RETURNED_NAN, argument);
    }
    return result;
}