You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2012/02/22 12:41:59 UTC

svn commit: r1292245 - /commons/proper/math/trunk/findbugs-exclude-filter.xml

Author: erans
Date: Wed Feb 22 11:41:59 2012
New Revision: 1292245

URL: http://svn.apache.org/viewvc?rev=1292245&view=rev
Log:
MATH-746
Disabled a "FindBugs" check.

Modified:
    commons/proper/math/trunk/findbugs-exclude-filter.xml

Modified: commons/proper/math/trunk/findbugs-exclude-filter.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/findbugs-exclude-filter.xml?rev=1292245&r1=1292244&r2=1292245&view=diff
==============================================================================
--- commons/proper/math/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/trunk/findbugs-exclude-filter.xml Wed Feb 22 11:41:59 2012
@@ -26,6 +26,11 @@
   <!--  the following equality tests are part of the reference algorithms -->
   <!--  which already know about limited precision of the double numbers -->
   <Match>
+    <Class name="org.apache.commons.math3.analysis.solvers.BaseSecantSolver" />
+    <Method name="doSolve" params="" returns="double" />
+    <Bug pattern="FE_FLOATING_POINT_EQUALITY" />
+  </Match>
+  <Match>
     <Class name="org.apache.commons.math3.distribution.SaddlePointExpansion" />
     <Or>
       <Method name="getDeviancePart" params="double,double" returns="double" />