Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for everySixteenthFactorial (0.2 sec)

  1. android/guava/src/com/google/common/math/DoubleMath.java

          // result than multiplying by everySixteenthFactorial[n >> 4] directly.
          double accum = 1.0;
          for (int i = 1 + (n & ~0xf); i <= n; i++) {
            accum *= i;
          }
          return accum * everySixteenthFactorial[n >> 4];
        }
      }
    
      @VisibleForTesting static final int MAX_FACTORIAL = 170;
    
      @VisibleForTesting
      static final double[] everySixteenthFactorial = {
        0x1.0p0,
        0x1.30777758p44,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/DoubleMath.java

          // result than multiplying by everySixteenthFactorial[n >> 4] directly.
          double accum = 1.0;
          for (int i = 1 + (n & ~0xf); i <= n; i++) {
            accum *= i;
          }
          return accum * everySixteenthFactorial[n >> 4];
        }
      }
    
      @VisibleForTesting static final int MAX_FACTORIAL = 170;
    
      @VisibleForTesting
      static final double[] everySixteenthFactorial = {
        0x1.0p0,
        0x1.30777758p44,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

      }
    
      public void testConstantsEverySixteenthFactorial() {
        for (int i = 0, n = 0; n <= DoubleMath.MAX_FACTORIAL; i++, n += 16) {
          assertEquals(
              BigIntegerMath.factorial(n).doubleValue(), DoubleMath.everySixteenthFactorial[i]);
        }
      }
    
      @GwtIncompatible // DoubleMath.roundToInt(double, RoundingMode)
      public void testRoundIntegralDoubleToInt() {
        for (double d : INTEGRAL_DOUBLE_CANDIDATES) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top