Author: sebb
Date: Mon Jan 17 20:24:56 2011
New Revision: 1060079
URL: http://svn.apache.org/viewvc?rev=1060079&view=rev
Log:
MATH-491 MathUtils.equals(double, double) does not work properly for floats
- update changes file
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=1060079&r1=1060078&r2=1060079&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Mon Jan 17 20:24:56 2011
@@ -56,6 +56,10 @@ The <action> type attribute can be add,u
FastMath.max(50.0f, -50.0f) => -50.0f; should be +50.0f
Fixed FastMath.max(float, float) so it returns correct value.
</action>
+ <action dev="sebb" type="fix" issue="MATH-491">
+ MATH-491 MathUtils.equals(double, double) does not work properly for
floats
+ - add equivalent (float, float) methods and basic tests
+ </action>
<action dev="erans" type="fix" issue="MATH-458">
Removed "MathException" from the "throws" clause of the "interpolate"
method
of the interpolators interfaces (package "analysis.interpolation").