Updated findbugs exclude filter, deleted references to removed classes.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1244674 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-02-15 19:44:08 +00:00
parent a5cf43289f
commit ab65490f56
1 changed files with 7 additions and 22 deletions

View File

@ -25,6 +25,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.util.Precision" />
<Method name="roundUnscaled" params="double,double,int" returns="double" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<Match>
<Class name="org.apache.commons.math3.distribution.SaddlePointExpansion" />
<Or>
@ -58,7 +63,7 @@
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.EigenDecompositionImpl" />
<Class name="org.apache.commons.math3.linear.EigenDecomposition" />
<Method name="findEigenVectors" params="double[][]" returns="void" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
@ -159,16 +164,6 @@
<Method name="getInterpolatedStateVariation" params="" returns="double[]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.BigMatrixImpl"/>
<Method name="&lt;init>" params="java.math3.BigDecimal[][],boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.BigMatrixImpl"/>
<Method name="getDataRef" params="" returns="java.math3.BigDecimal[][]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.Array2DRowRealMatrix"/>
<Method name="&lt;init>" params="double[][],boolean" returns="void" />
@ -179,16 +174,6 @@
<Method name="getDataRef" params="" returns="double[][]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.RealMatrixImpl"/>
<Method name="&lt;init>" params="double[][],boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.RealMatrixImpl"/>
<Method name="getDataRef" params="" returns="double[][]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.apache.commons.math3.linear.BlockFieldMatrix"/>
<Method name="&lt;init>" params="int,int,org.apache.commons.math3.FieldElement[][],boolean" returns="void" />
@ -263,7 +248,7 @@
<!-- False positive warning from findbugs, the integer division result cast to double is correct here -->
<Match>
<Class name="org.apache.commons.math3.stat.inference.MannWhitneyUTestImpl" />
<Class name="org.apache.commons.math3.stat.inference.MannWhitneyUTest" />
<Method name="mannWhitneyU" params="double[],double[]" returns="double" />
<Bug pattern="ICAST_IDIV_CAST_TO_DOUBLE" />
</Match>