Home | History | Annotate | Download | only in math

Lines Matching defs:binomial

73       assertTrue(fitsInInt(BigIntegerMath.binomial(IntMath.BIGGEST_BINOMIALS[k], k)));
75 || !fitsInInt(BigIntegerMath.binomial(IntMath.BIGGEST_BINOMIALS[k] + 1, k)));
80 fitsInInt(BigIntegerMath.binomial(
459 // Depends on the correctness of BigIntegerMath.binomial.
464 BigInteger expectedBig = BigIntegerMath.binomial(n, k);
466 assertEquals(expectedInt, IntMath.binomial(n, k));
471 @GwtIncompatible("binomial")
475 IntMath.binomial(n, -1);
479 IntMath.binomial(n, n + 1);
485 @GwtIncompatible("binomial")
489 IntMath.binomial(n, 0);