当前位置: 首页>>代码示例>>Java>>正文


Java LocalizedFormats.NUMBER_TOO_LARGE属性代码示例

本文整理汇总了Java中org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_TOO_LARGE属性的典型用法代码示例。如果您正苦于以下问题:Java LocalizedFormats.NUMBER_TOO_LARGE属性的具体用法?Java LocalizedFormats.NUMBER_TOO_LARGE怎么用?Java LocalizedFormats.NUMBER_TOO_LARGE使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.apache.commons.math3.exception.util.LocalizedFormats的用法示例。


在下文中一共展示了LocalizedFormats.NUMBER_TOO_LARGE属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: TriangularDistribution

/**
 * Creates a triangular distribution.
 *
 * @param rng Random number generator.
 * @param a Lower limit of this distribution (inclusive).
 * @param b Upper limit of this distribution (inclusive).
 * @param c Mode of this distribution.
 * @throws NumberIsTooLargeException if {@code a >= b} or if {@code c > b}.
 * @throws NumberIsTooSmallException if {@code c < a}.
 * @since 3.1
 */
public TriangularDistribution(RandomGenerator rng,
                              double a,
                              double c,
                              double b)
    throws NumberIsTooLargeException, NumberIsTooSmallException {
    super(rng);

    if (a >= b) {
        throw new NumberIsTooLargeException(
                        LocalizedFormats.LOWER_BOUND_NOT_BELOW_UPPER_BOUND,
                        a, b, false);
    }
    if (c < a) {
        throw new NumberIsTooSmallException(
                LocalizedFormats.NUMBER_TOO_SMALL, c, a, true);
    }
    if (c > b) {
        throw new NumberIsTooLargeException(
                LocalizedFormats.NUMBER_TOO_LARGE, c, b, true);
    }

    this.a = a;
    this.c = c;
    this.b = b;
    solverAbsoluteAccuracy = FastMath.max(FastMath.ulp(a), FastMath.ulp(b));
}
 
开发者ID:biocompibens,项目名称:SME,代码行数:37,代码来源:TriangularDistribution.java

示例2: NumberIsTooLargeException

/**
 * Construct the exception.
 *
 * @param wrong Value that is larger than the maximum.
 * @param max Maximum.
 * @param boundIsAllowed if true the maximum is included in the allowed range.
 */
public NumberIsTooLargeException(Number wrong,
                                 Number max,
                                 boolean boundIsAllowed) {
    this(boundIsAllowed ?
         LocalizedFormats.NUMBER_TOO_LARGE :
         LocalizedFormats.NUMBER_TOO_LARGE_BOUND_EXCLUDED,
         wrong, max, boundIsAllowed);
}
 
开发者ID:biocompibens,项目名称:SME,代码行数:15,代码来源:NumberIsTooLargeException.java


注:本文中的org.apache.commons.math3.exception.util.LocalizedFormats.NUMBER_TOO_LARGE属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。