GEOS
3.14.0dev
|
Determines the maximum number of common most-significant bits in the mantissa of one or numbers. More...
#include <CommonBits.h>
Public Member Functions | |
void | add (double num) |
double | getCommon () |
Static Public Member Functions | |
static int64_t | signExpBits (int64_t num) |
Computes the bit pattern for the sign and exponent of a double-precision number. More... | |
static int | numCommonMostSigMantissaBits (int64_t num1, int64_t num2) |
This computes the number of common most-significant bits in the mantissas of two double-precision numbers. More... | |
static int64_t | zeroLowerBits (int64_t bits, int nBits) |
Zeroes the lower n bits of a bitstring. More... | |
static int | getBit (int64_t bits, int i) |
Extracts the i'th bit of a bitstring. More... | |
Determines the maximum number of common most-significant bits in the mantissa of one or numbers.
Can be used to compute the double-precision number which is represented by the common bits. If there are no common bits, the number computed is 0.0.
|
static |
Extracts the i'th bit of a bitstring.
bits | the bitstring to extract from |
i | the bit to extract |
|
static |
This computes the number of common most-significant bits in the mantissas of two double-precision numbers.
It does not count the hidden bit, which is always 1. It does not determine whether the numbers have the same exponent - if they do not, the value computed by this function is meaningless.
num1 | |
num2 |
|
static |
Computes the bit pattern for the sign and exponent of a double-precision number.
num |
|
static |
Zeroes the lower n bits of a bitstring.
bits | the bitstring to alter |
nBits | the number of bits to zero |