Searched refs:expectedBig (Results 1 – 4 of 4) sorted by relevance
125 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local126 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testBinomial()
298 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local299 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testFactorial()
465 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local466 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testFactorial()485 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local486 int expectedInt = fitsInInt(expectedBig) ? expectedBig.intValue() : Integer.MAX_VALUE; in testBinomial()
543 BigInteger expectedBig = BigIntegerMath.factorial(n); in testFactorial() local544 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testFactorial()563 BigInteger expectedBig = BigIntegerMath.binomial(n, k); in testBinomial() local564 long expectedLong = fitsInLong(expectedBig) ? expectedBig.longValue() : Long.MAX_VALUE; in testBinomial()