Updated findbugs-exclude-list due to renamed classes.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1245178 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ef6887f870
commit
a1a3b8bc2e
|
@ -25,11 +25,6 @@
|
|||
|
||||
<!-- 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>
|
||||
|
@ -86,7 +81,7 @@
|
|||
|
||||
<!-- The following equality test is intentional and needed for rounding purposes -->
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.util.MathUtils" />
|
||||
<Class name="org.apache.commons.math3.util.Precision" />
|
||||
<Method name="roundUnscaled" params="double,double,int" returns="double" />
|
||||
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
||||
</Match>
|
||||
|
@ -119,17 +114,17 @@
|
|||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.RealPointValuePair"/>
|
||||
<Class name="org.apache.commons.math3.optimization.PointValuePair"/>
|
||||
<Method name="getPointRef" params="" returns="double[]" />
|
||||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.RealPointValuePair"/>
|
||||
<Class name="org.apache.commons.math3.optimization.PointValuePair"/>
|
||||
<Method name="<init>" params="double[],double,boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.VectorialPointValuePair"/>
|
||||
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
||||
<Or>
|
||||
<Method name="getPointRef" params="" returns="double[]" />
|
||||
<Method name="getValueRef" params="" returns="double[]" />
|
||||
|
@ -137,7 +132,7 @@
|
|||
<Bug pattern="EI_EXPOSE_REP" />
|
||||
</Match>
|
||||
<Match>
|
||||
<Class name="org.apache.commons.math3.optimization.VectorialPointValuePair"/>
|
||||
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
||||
<Method name="<init>" params="double[],double[][],boolean" returns="void" />
|
||||
<Bug pattern="EI_EXPOSE_REP2" />
|
||||
</Match>
|
||||
|
|
Loading…
Reference in New Issue