SUGGESTED FIX
src/share/classes/java/lang>sccs sccsdiff -r1.61 -r1.62 Math.java
------- Math.java -------
54,55c54,55
< * important. Therefore, methods with more than 0.5 ulp errors are
< * required to be <i>semi-monotonic</i>: whenever the mathematical
---
> * important. Therefore, most methods with more than 0.5 ulp errors
> * are required to be <i>semi-monotonic</i>: whenever the mathematical
1105c1105,1109
< * result.
---
> * result. The result of <code>tanh</code> for any finite input
> * must have an absolute value less than or equal to 1. Note that
> * once the exact result of tanh is within 1/2 of an ulp of the
> * limit value of ±1, correctly signed
> * ±<code>1.0</code> should be returned.
1165c1169,1174
< * result. Results must be semi-monotonic.
---
> * result. Results must be semi-monotonic. The result of
> * <code>expm1</code> for any finite input must be greater than or
> * equal to <code>-1.0</code>. Note that once the exact result of
> * <i>e</i><sup><code>x</code></sup> - 1 is within 1/2
> * ulp of the limit value -1, <code>-1.0</code> should be
> * returned.
###@###.### 2003-08-15
|