You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/10/28 22:54:14 UTC

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

Author: luc
Date: Wed Oct 28 21:54:13 2009
New Revision: 830772

URL: http://svn.apache.org/viewvc?rev=830772&view=rev
Log:
fixed findbugs false positive

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=830772&r1=830771&r2=830772&view=diff
==============================================================================
--- commons/proper/math/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/trunk/findbugs-exclude-filter.xml Wed Oct 28 21:54:13 2009
@@ -26,6 +26,14 @@
   <!--  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.math.distribution.SaddlePointExpansion" />
+    <Or>
+      <Method name="getDeviancePart" params="double,double" returns="double" />
+      <Method name="getStirlingError" params="double" returns="double" />
+    </Or>
+    <Bug pattern="FE_FLOATING_POINT_EQUALITY" />
+  </Match>
+  <Match>
     <Class name="org.apache.commons.math.optimization.univariate.BrentOptimizer" />
     <Method name="localMin" params="org.apache.commons.math.analysis.UnivariateRealFunction,org.apache.commons.math.optimization.GoalType,double,double,double,double" returns="double" />
     <Bug pattern="FE_FLOATING_POINT_EQUALITY" />