Author: sebb
Date: Wed Jan 19 20:42:40 2011
New Revision: 1060980
URL: http://svn.apache.org/viewvc?rev=1060980&view=rev
Log:
Update changes with recent fixes
Modified:
commons/proper/math/trunk/src/site/xdoc/changes.xml
Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=1060980&r1=1060979&r2=1060980&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Wed Jan 19 20:42:40 2011
@@ -52,6 +52,22 @@ The <action> type attribute can be add,u
If the output is not quite correct, check for invisible trailing spaces!
-->
<release version="3.0" date="TBD" description="TBD">
+ <action dev="sebb" type="fix" issue="MATH-486">
+ FastMath toRadian and toDegree don't handle large double numbers well
+ </action>
+ <action dev="sebb" type="fix" issue="MATH-483">
+ FastMath does not handle all special cases correctly
+ </action>
+ <action dev="sebb" type="fix" issue="MATH-480">
+ Fix ulp(Infinity) to return Infinity rather than NaN
+ </action>
+ <action dev="sebb" type="fix" issue="MATH-479">
+ FastMath.signum(-0.0) does not agree with Math.signum(-0.0)
+ </action>
+ <action dev="sebb" type="fix" issue="MATH-478">
+ FastMath is not an exact replacement for StrictMath
+ (partially fixed) Add signum(float), ulp(float)
+ </action>
<action dev="sebb" type="fix" issue="MATH-482">
FastMath.max(50.0f, -50.0f) => -50.0f; should be +50.0f
Fixed FastMath.max(float, float) so it returns correct value.