2008-01-13 15:59:58 -05:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
2008-01-16 13:24:23 -05:00
|
|
|
See the License for the specific language governing permissions and
|
2008-01-13 15:59:58 -05:00
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<!--
|
|
|
|
This file contains some false positive bugs detected by findbugs. Their
|
|
|
|
false positive nature has been analyzed individually and they have been
|
|
|
|
put here to instruct findbugs it must ignore them.
|
|
|
|
-->
|
|
|
|
<FindBugsFilter>
|
|
|
|
|
|
|
|
<!-- the following equality tests are part of the reference algorithms -->
|
|
|
|
<!-- which already know about limited precision of the double numbers -->
|
2012-02-22 06:41:59 -05:00
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.commons.math3.analysis.solvers.BaseSecantSolver" />
|
|
|
|
<Method name="doSolve" params="" returns="double" />
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
2009-10-28 17:54:13 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.distribution.SaddlePointExpansion" />
|
2009-10-28 17:54:13 -04:00
|
|
|
<Or>
|
|
|
|
<Method name="getDeviancePart" params="double,double" returns="double" />
|
|
|
|
<Method name="getStirlingError" params="double" returns="double" />
|
|
|
|
</Or>
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
2009-01-18 11:57:29 -05:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.univariate.BrentOptimizer" />
|
2010-09-04 09:18:30 -04:00
|
|
|
<Method name="localMin" params="boolean,double,double,double,double,double" returns="double" />
|
2009-01-18 11:57:29 -05:00
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.analysis.solvers.BrentSolver" />
|
2011-03-27 12:30:50 -04:00
|
|
|
<Method name="brent" params="double,double,double,double" returns="double" />
|
2008-01-13 15:59:58 -05:00
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.analysis.solvers.MullerSolver" />
|
2008-01-13 15:59:58 -05:00
|
|
|
<Or>
|
2011-03-27 12:30:50 -04:00
|
|
|
<Method name="solve" params="double,double,double,double" returns="double" />
|
|
|
|
</Or>
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.analysis.solvers.MullerSolver2" />
|
2011-03-27 12:30:50 -04:00
|
|
|
<Or>
|
|
|
|
<Method name="doSolve" params="" returns="double" />
|
2008-01-13 15:59:58 -05:00
|
|
|
</Or>
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
2009-07-01 12:03:28 -04:00
|
|
|
<Match>
|
2012-02-15 14:44:08 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.EigenDecomposition" />
|
2010-02-28 14:55:07 -05:00
|
|
|
<Method name="findEigenVectors" params="double[][]" returns="void" />
|
2009-07-01 12:03:28 -04:00
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<!-- The following equality test is intentional and needed for semantic purposes -->
|
|
|
|
<Match>
|
2011-06-03 15:23:56 -04:00
|
|
|
<Or>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.geometry.euclidean.oned.Vector1D" />
|
|
|
|
<Class name="org.apache.commons.math3.geometry.euclidean.twod.Vector2D" />
|
|
|
|
<Class name="org.apache.commons.math3.geometry.euclidean.threed.Vector3D" />
|
2011-06-03 15:23:56 -04:00
|
|
|
</Or>
|
2009-07-01 12:03:28 -04:00
|
|
|
<Method name="equals" params="java.lang.Object" returns="boolean" />
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.linear.LinearConstraint" />
|
2009-07-01 12:03:28 -04:00
|
|
|
<Method name="equals" params="java.lang.Object" returns="boolean" />
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
|
|
|
|
<!-- The following equality test is intentional and needed for rounding purposes -->
|
|
|
|
<Match>
|
2012-02-16 16:14:15 -05:00
|
|
|
<Class name="org.apache.commons.math3.util.Precision" />
|
|
|
|
<Method name="roundUnscaled" params="double,double,int" returns="double" />
|
2008-01-13 15:59:58 -05:00
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
|
2009-06-20 09:42:56 -04:00
|
|
|
<!-- The following equality test is intentional for division protection -->
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.analysis.interpolation.LoessInterpolator" />
|
2009-06-20 09:42:56 -04:00
|
|
|
<Method name="smooth" params="double[],double[]" returns="double[]" />
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
|
2010-08-29 18:04:09 -04:00
|
|
|
<!-- The following equality test is intentional for infinity detection -->
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.util.FastMath" />
|
2010-08-29 18:04:09 -04:00
|
|
|
<Method name="atan2" params="double,double" returns="double" />
|
|
|
|
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
|
|
|
|
</Match>
|
|
|
|
|
2011-01-01 21:56:35 -05:00
|
|
|
<!-- Spurious: Findbugs confused by final local variables -->
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.util.FastMath" />
|
2011-01-01 21:56:35 -05:00
|
|
|
<Method name="atan" params="double,double,boolean" returns="double" />
|
|
|
|
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
|
|
|
|
<!-- the following expositions of internal representation are intentional and documented -->
|
2010-10-10 10:50:56 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.descriptive.AbstractUnivariateStatistic"/>
|
2010-10-10 10:50:56 -04:00
|
|
|
<Method name="getDataRef" params="" returns="double[]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-03-14 13:35:49 -04:00
|
|
|
<Match>
|
2012-02-16 16:14:15 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.PointValuePair"/>
|
2009-03-14 13:35:49 -04:00
|
|
|
<Method name="getPointRef" params="" returns="double[]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-16 16:14:15 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.PointValuePair"/>
|
2009-03-14 13:35:49 -04:00
|
|
|
<Method name="<init>" params="double[],double,boolean" returns="void" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-16 16:14:15 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
2009-03-14 13:35:49 -04:00
|
|
|
<Or>
|
|
|
|
<Method name="getPointRef" params="" returns="double[]" />
|
|
|
|
<Method name="getValueRef" params="" returns="double[]" />
|
|
|
|
</Or>
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-16 16:14:15 -05:00
|
|
|
<Class name="org.apache.commons.math3.optimization.PointVectorValuePair"/>
|
2009-03-14 13:35:49 -04:00
|
|
|
<Method name="<init>" params="double[],double[][],boolean" returns="void" />
|
2010-03-06 16:30:37 -05:00
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.ode.sampling.DummyStepInterpolator"/>
|
2010-03-06 16:30:37 -05:00
|
|
|
<Method name="<init>" params="double[],double[],boolean" returns="void" />
|
2009-03-14 13:35:49 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
2008-07-26 15:35:35 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.ode.sampling.AbstractStepInterpolator"/>
|
2008-07-26 15:35:35 -04:00
|
|
|
<Or>
|
|
|
|
<Method name="getInterpolatedState" params="" returns="double[]" />
|
|
|
|
<Method name="getInterpolatedDerivatives" params="" returns="double[]" />
|
|
|
|
</Or>
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-04-05 15:10:44 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.ode.sampling.NordsieckStepInterpolator"/>
|
|
|
|
<Method name="reinitialize" params="double,double,double[],org.apache.commons.math3.linear.Array2DRowRealMatrix" returns="void" />
|
2009-04-05 15:10:44 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
2009-07-07 03:57:37 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.ode.sampling.NordsieckStepInterpolator"/>
|
2009-07-07 03:57:37 -04:00
|
|
|
<Method name="getInterpolatedStateVariation" params="" returns="double[]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2008-07-26 15:35:35 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.Array2DRowRealMatrix"/>
|
2008-07-26 15:35:35 -04:00
|
|
|
<Method name="<init>" params="double[][],boolean" returns="void" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.Array2DRowRealMatrix"/>
|
2008-01-13 15:59:58 -05:00
|
|
|
<Method name="getDataRef" params="" returns="double[][]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-05-03 12:28:48 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.BlockFieldMatrix"/>
|
|
|
|
<Method name="<init>" params="int,int,org.apache.commons.math3.FieldElement[][],boolean" returns="void" />
|
2009-05-03 12:28:48 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
2009-04-19 12:39:40 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.Array2DRowFieldMatrix"/>
|
|
|
|
<Method name="<init>" params="org.apache.commons.math3.Field,org.apache.commons.math3.FieldElement[][],boolean" returns="void" />
|
2009-04-19 12:39:40 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.Array2DRowFieldMatrix"/>
|
|
|
|
<Method name="getDataRef" params="" returns="org.apache.commons.math3.FieldElement[][]" />
|
2009-04-19 12:39:40 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-01-05 17:32:52 -05:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.BlockRealMatrix"/>
|
2009-01-05 17:32:52 -05:00
|
|
|
<Method name="<init>" params="int,int,double[][],boolean" returns="void" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.util.ResizableDoubleArray"/>
|
2009-01-05 17:32:52 -05:00
|
|
|
<Or>
|
|
|
|
<Method name="getValues" params="" returns="double[]" />
|
|
|
|
<Method name="getInternalValues" params="" returns="double[]" />
|
|
|
|
</Or>
|
2008-01-13 15:59:58 -05:00
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2008-07-27 15:15:22 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.ArrayRealVector"/>
|
2008-07-27 15:15:22 -04:00
|
|
|
<Method name="getDataRef" params="" returns="double[]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-04-19 12:39:40 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.linear.ArrayFieldVector"/>
|
|
|
|
<Method name="getDataRef" params="" returns="org.apache.commons.math3.FieldElement[]" />
|
2009-04-19 12:39:40 -04:00
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2009-05-03 12:28:48 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.clustering.EuclideanIntegerPoint"/>
|
2009-05-03 12:28:48 -04:00
|
|
|
<Method name="<init>" params="int[]" returns="void" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.clustering.EuclideanIntegerPoint"/>
|
2009-05-03 12:28:48 -04:00
|
|
|
<Method name="getPoint" params="" returns="int[]" />
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
|
|
|
|
<!-- The following cases are intentional unit tests for null parameters -->
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.StatUtilsTest" />
|
2008-01-13 15:59:58 -05:00
|
|
|
<Method name="testPercentile" params="" returns="void" />
|
|
|
|
<Bug pattern="NP_NULL_PARAM_DEREF_NONVIRTUAL" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.analysis.UnivariateRealSolverFactoryImplTest" />
|
2008-01-13 15:59:58 -05:00
|
|
|
<Method name="testNewNewtonSolverNull" params="" returns="void" />
|
|
|
|
<Bug pattern="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" />
|
|
|
|
</Match>
|
2009-07-01 16:31:50 -04:00
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.regression.OLSMultipleLinearRegressionTest" />
|
2009-07-01 16:31:50 -04:00
|
|
|
<Method name="cannotAddNullYSampleData" params="" returns="void" />
|
|
|
|
<Bug pattern="NP_NULL_PARAM_DEREF_ALL_TARGETS_DANGEROUS" />
|
|
|
|
</Match>
|
2009-05-19 09:31:34 -04:00
|
|
|
|
|
|
|
<!-- IntDoublePair intentionally implements Comparable inconsistently with equals -->
|
|
|
|
<Match>
|
2012-02-14 11:17:55 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.ranking.NaturalRanking$IntDoublePair" />
|
2009-05-19 09:31:34 -04:00
|
|
|
<Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS" />
|
|
|
|
</Match>
|
2008-01-13 15:59:58 -05:00
|
|
|
|
2011-03-27 12:30:50 -04:00
|
|
|
<!-- False positive warning from findbugs, the integer division result cast to double is correct here -->
|
|
|
|
<Match>
|
2012-02-15 14:44:08 -05:00
|
|
|
<Class name="org.apache.commons.math3.stat.inference.MannWhitneyUTest" />
|
2011-03-27 12:30:50 -04:00
|
|
|
<Method name="mannWhitneyU" params="double[],double[]" returns="double" />
|
|
|
|
<Bug pattern="ICAST_IDIV_CAST_TO_DOUBLE" />
|
|
|
|
</Match>
|
|
|
|
|
2008-01-13 15:59:58 -05:00
|
|
|
</FindBugsFilter>
|