Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for isPowerOfTwo (0.21 sec)

  1. guava-tests/test/com/google/common/math/DoubleMathTest.java

        for (double x : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          boolean isPowerOfTwo = StrictMath.pow(2.0, DoubleMath.log2(x, FLOOR)) == x;
          try {
            int log2 = DoubleMath.log2(x, UNNECESSARY);
            assertEquals(x, Math.scalb(1.0, log2));
            assertTrue(isPowerOfTwo);
          } catch (ArithmeticException e) {
            assertFalse(isPowerOfTwo);
          }
        }
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

        for (double x : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          boolean isPowerOfTwo = StrictMath.pow(2.0, DoubleMath.log2(x, FLOOR)) == x;
          try {
            int log2 = DoubleMath.log2(x, UNNECESSARY);
            assertEquals(x, Math.scalb(1.0, log2));
            assertTrue(isPowerOfTwo);
          } catch (ArithmeticException e) {
            assertFalse(isPowerOfTwo);
          }
        }
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 28.1K bytes
    - Viewed (0)
Back to top