Searched defs:LN_10 (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/test/java/lang/Math/
H A DLog10Tests.java39 static final double LN_10 = StrictMath.log(10.0); field in class:Log10Tests
106 double expected = StrictMath.log(input)/LN_10;
135 // log10(1+z) ~= (z -(z^2)/2)/LN_10;
173 double expected = (z - (z*z)*0.5)/LN_10;

Completed in 46 milliseconds