|
Javolution 6.0.0 java
|
Static Public Member Functions | |
| static int | bitLength (int i) |
| static int | bitLength (long l) |
| static int | bitCount (long longValue) |
| static int | numberOfLeadingZeros (long longValue) |
| static int | numberOfTrailingZeros (long longValue) |
| static int | digitLength (int i) |
| static int | digitLength (long l) |
| static double | toDoublePow2 (long m, int n) |
| static double | toDoublePow10 (long m, int n) |
| static long | toLongPow2 (double d, int n) |
| static long | toLongPow10 (double d, int n) |
| static int | floorLog2 (double d) |
| static int | floorLog10 (double d) |
| static double | toRadians (double degrees) |
| static double | toDegrees (double radians) |
| static double | sqrt (double x) |
| static double | rem (double x, double y) |
| static double | ceil (double x) |
| static double | floor (double x) |
| static double | sin (double radians) |
| static double | cos (double radians) |
| static double | tan (double radians) |
| static double | asin (double x) |
| static double | acos (double x) |
| static double | atan (double x) |
| static double | atan2 (double y, double x) |
| static double | sinh (double x) |
| static double | cosh (double x) |
| static double | tanh (double x) |
| static double | exp (double x) |
| static double | log (double x) |
| static double | log10 (double x) |
| static double | pow (double x, double y) |
| static int | round (float f) |
| static long | round (double d) |
| static int | abs (int i) |
| static long | abs (long l) |
| static float | abs (float f) |
| static double | abs (double d) |
| static int | max (int x, int y) |
| static long | max (long x, long y) |
| static float | max (float x, float y) |
| static double | max (double x, double y) |
| static int | min (int x, int y) |
| static long | min (long x, long y) |
| static float | min (float x, float y) |
| static double | min (double x, double y) |
Static Public Attributes | |
| static final double | E = 2.71828182845904523536028747135266 |
| static final double | PI = 3.1415926535897932384626433832795 |
| static final double | HALF_PI = 1.5707963267948966192313216916398 |
| static final double | TWO_PI = 6.283185307179586476925286766559 |
| static final double | FOUR_PI = 12.566370614359172953850573533118 |
| static final double | PI_SQUARE = 9.8696044010893586188344909998762 |
| static final double | LOG2 = 0.69314718055994530941723212145818 |
| static final double | LOG10 = 2.3025850929940456840179914546844 |
| static final double | SQRT2 = 1.4142135623730950488016887242097 |
| static final double | NaN = 0.0 / 0.0 |
| static final double | Infinity = 1.0 / 0.0 |
Static Package Functions | |
| static double | _atan (double x) |
| static double | _ieee754_log (double x) |
| static double | _ieee754_exp (double x) |
Static Package Attributes | |
| static final double | atanhi [] |
| static final double | atanlo [] |
| static final double | aT [] |
| static final double | one = 1.0 |
| static final double | huge = 1.0e300 |
| static final double | ln2_hi = 6.93147180369123816490e-01 |
| static final double | ln2_lo = 1.90821492927058770002e-10 |
| static final double | two54 = 1.80143985094819840000e+16 |
| static final double | Lg1 = 6.666666666666735130e-01 |
| static final double | Lg2 = 3.999999999940941908e-01 |
| static final double | Lg3 = 2.857142874366239149e-01 |
| static final double | Lg4 = 2.222219843214978396e-01 |
| static final double | Lg5 = 1.818357216161805012e-01 |
| static final double | Lg6 = 1.531383769920937332e-01 |
| static final double | Lg7 = 1.479819860511658591e-01 |
| static final double | zero = 0.0 |
| static final double | halF [] = { 0.5, -0.5, } |
| static final double | twom1000 = 9.33263618503218878990e-302 |
| static final double | o_threshold = 7.09782712893383973096e+02 |
| static final double | u_threshold = -7.45133219101941108420e+02 |
| static final double | ln2HI [] |
| static final double | ln2LO [] |
| static final double | invln2 = 1.44269504088896338700e+00 |
| static final double | P1 = 1.66666666666666019037e-01 |
| static final double | P2 = -2.77777777770155933842e-03 |
| static final double | P3 = 6.61375632143793436117e-05 |
| static final double | P4 = -1.65339022054652515390e-06 |
| static final double | P5 = 4.13813679705723846039e-08 |
Private Member Functions | |
| MathLib () | |
Static Private Attributes | |
| static final byte[] | BIT_LENGTH |
| static final long | MASK_63 = 0x7FFFFFFFFFFFFFFFL |
| static final long | MASK_32 = 0xFFFFFFFFL |
| static final int[] | POW5_INT |
| static final double | LOG2_DIV_LOG10 = 0.3010299956639811952137388947 |
| static double | INV_LOG10 = 0.43429448190325182765112891891661 |
An utility class providing a Realtime implementation of the math library.
Definition at line 20 of file MathLib.java.
|
private |
|
staticpackage |
Definition at line 1109 of file MathLib.java.
References javolution.lang.MathLib.abs(), javolution.lang.MathLib.aT, javolution.lang.MathLib.atanhi, javolution.lang.MathLib.atanlo, javolution.lang.MathLib.huge, and javolution.lang.MathLib.one.
Referenced by javolution.lang.MathLib.atan().
|
staticpackage |
Definition at line 1404 of file MathLib.java.
References javolution.lang.MathLib.halF, javolution.lang.MathLib.huge, javolution.lang.MathLib.invln2, javolution.lang.MathLib.ln2HI, javolution.lang.MathLib.ln2LO, javolution.lang.MathLib.o_threshold, javolution.lang.MathLib.one, javolution.lang.MathLib.P1, javolution.lang.MathLib.P2, javolution.lang.MathLib.P3, javolution.lang.MathLib.P4, javolution.lang.MathLib.P5, javolution.lang.MathLib.twom1000, and javolution.lang.MathLib.u_threshold.
Referenced by javolution.lang.MathLib.exp().
|
staticpackage |
Definition at line 1244 of file MathLib.java.
References javolution.lang.MathLib.Lg1, javolution.lang.MathLib.Lg2, javolution.lang.MathLib.Lg3, javolution.lang.MathLib.Lg4, javolution.lang.MathLib.Lg5, javolution.lang.MathLib.Lg6, javolution.lang.MathLib.Lg7, javolution.lang.MathLib.ln2_hi, javolution.lang.MathLib.ln2_lo, javolution.lang.MathLib.two54, and javolution.lang.MathLib.zero.
Referenced by javolution.lang.MathLib.log().
|
static |
Returns the absolute value of the specified double argument.
| d | the double value. |
d or -d Definition at line 951 of file MathLib.java.
|
static |
Returns the absolute value of the specified float argument.
| f | the float value. |
f or -f Definition at line 941 of file MathLib.java.
|
static |
Returns the absolute value of the specified int argument.
| i | the int value. |
i or -i Definition at line 921 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan(), javolution.text.TextBuilder.append(), javolution.text.TypeFormat.format(), and javolution.lang.MathLib.rem().
|
static |
Returns the absolute value of the specified long argument.
| l | the long value. |
l or -l Definition at line 931 of file MathLib.java.
|
static |
Returns the arc cosine of the specified value, in the range of 0.0 through pi.
| x | the value whose arc cosine is to be returned. |
Definition at line 760 of file MathLib.java.
References javolution.lang.MathLib.asin(), and javolution.lang.MathLib.HALF_PI.
|
static |
Returns the arc sine of the specified value, in the range of -pi/2 through pi/2.
| x | the value whose arc sine is to be returned. |
Definition at line 741 of file MathLib.java.
References javolution.lang.MathLib.atan(), javolution.lang.MathLib.HALF_PI, javolution.lang.MathLib.NaN, and javolution.lang.MathLib.sqrt().
Referenced by javolution.lang.MathLib.acos().
|
static |
Returns the arc tangent of the specified value, in the range of -pi/2 through pi/2.
| x | the value whose arc tangent is to be returned. |
Definition at line 775 of file MathLib.java.
References javolution.lang.MathLib._atan().
Referenced by javolution.lang.MathLib.asin(), and javolution.lang.MathLib.atan2().
|
static |
Returns the angle theta such that (x == cos(theta)) && (y == sin(theta)).
| y | the y value. |
| x | the x value. |
Definition at line 790 of file MathLib.java.
References javolution.lang.MathLib.atan(), and javolution.lang.MathLib.PI.
|
static |
Returns the number of one-bits in the two's complement binary representation of the specified long value. This function is sometimes referred to as the population count.
| longValue | the long value. |
longValue. Definition at line 97 of file MathLib.java.
Referenced by javolution.util.internal.bitset.BitSetServiceImpl.cardinality().
|
static |
Returns the number of bits in the minimal two's-complement representation of the specified int, excluding a sign bit. For positive int, this is equivalent to the number of bits in the ordinary binary representation. For negative int, it is equivalent to the number of bits of the positive value -(i + 1).
| i | the int value for which the bit length is returned. |
i. Definition at line 38 of file MathLib.java.
References javolution.lang.MathLib.BIT_LENGTH.
Referenced by javolution.lang.MathLib.bitLength(), javolution.lang.MathLib.toDoublePow10(), javolution.lang.MathLib.toDoublePow2(), and javolution.lang.MathLib.toLongPow10().
|
static |
Returns the number of bits in the minimal two's-complement representation of the specified long, excluding a sign bit. For positive long, this is equivalent to the number of bits in the ordinary binary representation. For negative long, it is equivalent to the number of bits of the positive value -(l + 1).
| l | the long value for which the bit length is returned. |
l. Definition at line 72 of file MathLib.java.
References javolution.lang.MathLib.BIT_LENGTH, and javolution.lang.MathLib.bitLength().
|
static |
Returns the smallest (closest to negative infinity) double value that is not less than the argument and is equal to a mathematical integer.
| x | the value. |
java.lang.Math.ceil(x) Definition at line 678 of file MathLib.java.
|
static |
Returns the trigonometric cosine of the specified angle in radians.
| radians | the angle in radians. |
java.lang.Math.cos(radians) Definition at line 716 of file MathLib.java.
|
static |
Returns the hyperbolic cosine of x.
| x | the value for which the hyperbolic cosine is calculated. |
(exp(x) + exp(-x)) / 2 Definition at line 820 of file MathLib.java.
References javolution.lang.MathLib.exp().
|
static |
Returns the number of digits of the decimal representation of the specified int value, excluding the sign character if any.
| i | the int value for which the digit length is returned. |
String.valueOf(i).length() for zero or positive values; String.valueOf(i).length() - 1 for negative values. Definition at line 161 of file MathLib.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendFraction(), and javolution.lang.MathLib.digitLength().
|
static |
Returns the number of digits of the decimal representation of the the specified long, excluding the sign character if any.
| l | the long value for which the digit length is returned. |
String.valueOf(l).length() for zero or positive values; String.valueOf(l).length() - 1 for negative values. Definition at line 180 of file MathLib.java.
References javolution.lang.MathLib.digitLength().
|
static |
Returns e raised to the specified power.
| x | the exponent. |
ex Definition at line 846 of file MathLib.java.
References javolution.lang.MathLib._ieee754_exp().
Referenced by javolution.lang.MathLib.cosh(), javolution.lang.MathLib.floorLog2(), javolution.lang.MathLib.pow(), javolution.lang.MathLib.sinh(), javolution.lang.MathLib.tanh(), javolution.lang.MathLib.toDoublePow2(), javolution.lang.MathLib.toLongPow10(), and javolution.lang.MathLib.toLongPow2().
|
static |
Returns the largest (closest to positive infinity) double value that is not greater than the argument and is equal to a mathematical integer.
| x | the value. |
java.lang.Math.ceil(x) Definition at line 692 of file MathLib.java.
Referenced by javolution.lang.MathLib.round().
|
static |
Returns the largest power of 10 that is less than or equal to the the specified positive value.
| d | the double number. |
floor(Log10(abs(d))) | ArithmeticException | if d <= 0 |
Definition at line 549 of file MathLib.java.
References javolution.lang.MathLib.floorLog2(), javolution.lang.MathLib.LOG2_DIV_LOG10, and javolution.lang.MathLib.toDoublePow10().
Referenced by javolution.text.TextBuilder.append().
|
static |
Returns the largest power of 2 that is less than or equal to the the specified positive value.
| d | the double number. |
floor(Log2(abs(d))) | ArithmeticException | if d <= 0 |
Definition at line 526 of file MathLib.java.
References javolution.lang.MathLib.exp().
Referenced by javolution.lang.MathLib.floorLog10().
|
static |
Returns the natural logarithm (base e) of the specified value.
| x | the value greater than 0.0. |
ey == x Definition at line 859 of file MathLib.java.
References javolution.lang.MathLib._ieee754_log().
Referenced by javolution.lang.MathLib.log10(), and javolution.lang.MathLib.pow().
|
static |
Returns the decimal logarithm of the specified value.
| x | the value greater than 0.0. |
10y == x Definition at line 871 of file MathLib.java.
References javolution.lang.MathLib.INV_LOG10, and javolution.lang.MathLib.log().
|
static |
Returns the greater of two double values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 997 of file MathLib.java.
|
static |
Returns the greater of two float values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 986 of file MathLib.java.
|
static |
Returns the greater of two int values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 964 of file MathLib.java.
Referenced by javolution.text.Text.getDepth(), javolution.text.Text.indexOf(), and javolution.io.Struct.Member.Member().
|
static |
Returns the greater of two long values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 975 of file MathLib.java.
|
static |
Returns the smaller of two double values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 1045 of file MathLib.java.
|
static |
Returns the smaller of two float values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 1032 of file MathLib.java.
|
static |
Returns the smaller of two int values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 1010 of file MathLib.java.
Referenced by javolution.util.internal.bitset.BitSetServiceImpl.and(), javolution.util.internal.bitset.BitSetServiceImpl.andNot(), javolution.text.TextBuilder.append(), javolution.util.internal.comparator.LexicalComparatorImpl.compare(), javolution.util.internal.table.FractalTableImpl.copyTo(), javolution.util.internal.bitset.BitSetServiceImpl.get(), javolution.text.TextBuilder.getChars(), javolution.util.internal.bitset.BitSetServiceImpl.intersects(), javolution.text.Text.lastIndexOf(), javolution.test.Perfometer< T >.measure(), javolution.text.CharSet.minus(), javolution.io.CharSequenceReader.read(), and javolution.context.internal.ConcurrentContextImpl.setConcurrency().
|
static |
Returns the smaller of two long values.
| x | the first value. |
| y | the second value. |
x and y. Definition at line 1021 of file MathLib.java.
|
static |
Returns the number of zero bits preceding the highest-order ("leftmost") one-bit in the two's complement binary representation of the specified long value. Returns 64 if the specifed value is zero.
| longValue | the long value. |
Definition at line 117 of file MathLib.java.
Referenced by javolution.util.internal.bitset.BitSetServiceImpl.length().
|
static |
Returns the number of zero bits following the lowest-order ("rightmost") one-bit in the two's complement binary representation of the specified long value. Returns 64 if the specifed value is zero.
| longValue | the long value. |
Definition at line 140 of file MathLib.java.
|
static |
Returns the value of the first argument raised to the power of the second argument.
| x | the base. |
| y | the exponent. |
xy Definition at line 885 of file MathLib.java.
References javolution.lang.MathLib.exp(), and javolution.lang.MathLib.log().
|
static |
Returns the remainder of the division of the specified two arguments.
| x | the dividend. |
| y | the divisor. |
x - round(x / y) * y Definition at line 660 of file MathLib.java.
References javolution.lang.MathLib.abs(), javolution.lang.MathLib.NaN, and javolution.lang.MathLib.round().
|
static |
Returns the closest long to the specified argument.
| d | the double value to be rounded to a long |
long value. Definition at line 911 of file MathLib.java.
References javolution.lang.MathLib.floor().
|
static |
Returns the closest int to the specified argument.
| f | the float value to be rounded to a int |
int value. Definition at line 898 of file MathLib.java.
References javolution.lang.MathLib.floor().
Referenced by javolution.lang.MathLib.rem().
|
static |
Returns the trigonometric sine of the specified angle in radians.
| radians | the angle in radians. |
java.lang.Math.sin(radians) Definition at line 704 of file MathLib.java.
|
static |
Returns the hyperbolic sine of x.
| x | the value for which the hyperbolic sine is calculated. |
(exp(x) - exp(-x)) / 2 Definition at line 808 of file MathLib.java.
References javolution.lang.MathLib.exp().
|
static |
Returns the positive square root of the specified value.
| x | the value. |
java.lang.Math.sqrt(x) Definition at line 647 of file MathLib.java.
Referenced by javolution.lang.MathLib.asin().
|
static |
Returns the trigonometric tangent of the specified angle in radians.
| radians | the angle in radians. |
java.lang.Math.tan(radians) Definition at line 728 of file MathLib.java.
|
static |
Returns the hyperbolic tangent of x.
| x | the value for which the hyperbolic tangent is calculated. |
(exp(2 * x) - 1) / (exp(2 * x) + 1) Definition at line 832 of file MathLib.java.
References javolution.lang.MathLib.exp().
|
static |
Converts an angle in radians to degrees.
| radians | the angle in radians. |
Definition at line 635 of file MathLib.java.
References javolution.lang.MathLib.PI.
|
static |
Returns the closest double representation of the specified long number multiplied by a power of ten.
| m | the long multiplier. |
| n | the power of ten exponent. |
multiplier * 10n. Definition at line 240 of file MathLib.java.
References javolution.lang.MathLib.bitLength(), javolution.lang.MathLib.MASK_32, javolution.lang.MathLib.MASK_63, javolution.lang.MathLib.POW5_INT, and javolution.lang.MathLib.toDoublePow2().
Referenced by javolution.text.TextBuilder.append(), javolution.lang.MathLib.floorLog10(), and javolution.text.TypeFormat.parseDouble().
|
static |
Returns the closest double representation of the specified long number multiplied by a power of two.
| m | the long multiplier. |
| n | the power of two exponent. |
m * 2n. Definition at line 203 of file MathLib.java.
References javolution.lang.MathLib.bitLength(), and javolution.lang.MathLib.exp().
Referenced by javolution.lang.MathLib.toDoublePow10().
|
static |
Returns the closest long representation of the specified double number multiplied by a power of ten.
| d | the double multiplier. |
| n | the power of two exponent. |
d * 10n. Definition at line 400 of file MathLib.java.
References javolution.lang.MathLib.bitLength(), javolution.lang.MathLib.exp(), javolution.lang.MathLib.MASK_32, javolution.lang.MathLib.MASK_63, and javolution.lang.MathLib.POW5_INT.
Referenced by javolution.text.TextBuilder.append().
|
static |
Returns the closest long representation of the specified double number multiplied by a power of two.
| d | the double multiplier. |
| n | the power of two exponent. |
d * 2n | ArithmeticException | if the conversion cannot be performed (NaN, Infinity or overflow). |
Definition at line 366 of file MathLib.java.
References javolution.lang.MathLib.exp().
|
static |
Converts an angle in degrees to radians.
| degrees | the angle in degrees. |
Definition at line 623 of file MathLib.java.
References javolution.lang.MathLib.PI.
|
staticpackage |
Definition at line 1094 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan().
|
staticpackage |
Definition at line 1082 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan().
|
staticpackage |
Definition at line 1088 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan().
|
staticprivate |
Definition at line 47 of file MathLib.java.
Referenced by javolution.lang.MathLib.bitLength().
|
static |
The natural logarithm.
Definition at line 564 of file MathLib.java.
|
static |
Four time the ratio of the circumference of a circle to its diameter.
Definition at line 584 of file MathLib.java.
|
staticpackage |
Definition at line 1389 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
static |
Half the ratio of the circumference of a circle to its diameter.
Definition at line 574 of file MathLib.java.
Referenced by javolution.lang.MathLib.acos(), and javolution.lang.MathLib.asin().
|
staticpackage |
Definition at line 1107 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan(), and javolution.lang.MathLib._ieee754_exp().
|
static |
Infinity.
Definition at line 614 of file MathLib.java.
|
staticprivate |
Definition at line 875 of file MathLib.java.
Referenced by javolution.lang.MathLib.log10().
|
staticpackage |
Definition at line 1397 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1234 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1235 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1236 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1237 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1238 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1239 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1240 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1231 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1232 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
staticpackage |
Definition at line 1393 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1395 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
static |
The natural logarithm of ten.
Definition at line 599 of file MathLib.java.
|
static |
The natural logarithm of two.
Definition at line 594 of file MathLib.java.
|
staticprivate |
Definition at line 559 of file MathLib.java.
Referenced by javolution.lang.MathLib.floorLog10().
|
staticprivate |
Definition at line 349 of file MathLib.java.
Referenced by javolution.lang.MathLib.toDoublePow10(), and javolution.lang.MathLib.toLongPow10().
|
staticprivate |
Definition at line 347 of file MathLib.java.
Referenced by javolution.lang.MathLib.toDoublePow10(), and javolution.lang.MathLib.toLongPow10().
|
static |
Not-A-Number.
Definition at line 609 of file MathLib.java.
Referenced by javolution.lang.MathLib.asin(), and javolution.lang.MathLib.rem().
|
staticpackage |
Definition at line 1391 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1107 of file MathLib.java.
Referenced by javolution.lang.MathLib._atan(), and javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1398 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1399 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1400 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1401 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1402 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
static |
The ratio of the circumference of a circle to its diameter.
Definition at line 569 of file MathLib.java.
Referenced by javolution.lang.MathLib.atan2(), javolution.lang.MathLib.toDegrees(), and javolution.lang.MathLib.toRadians().
|
static |
Definition at line 589 of file MathLib.java.
|
staticprivate |
Definition at line 351 of file MathLib.java.
Referenced by javolution.lang.MathLib.toDoublePow10(), and javolution.lang.MathLib.toLongPow10().
|
static |
The square root of two.
Definition at line 604 of file MathLib.java.
|
staticpackage |
Definition at line 1233 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().
|
static |
Twice the ratio of the circumference of a circle to its diameter.
Definition at line 579 of file MathLib.java.
|
staticpackage |
Definition at line 1390 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1392 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_exp().
|
staticpackage |
Definition at line 1242 of file MathLib.java.
Referenced by javolution.lang.MathLib._ieee754_log().