Author: luc
Date: Tue Mar 24 22:17:13 2009
New Revision: 758060
URL: http://svn.apache.org/viewvc?rev=758060&view=rev
Log:
improved consistency in class naming with respect to functions in the analysis
package
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=758060&r1=758059&r2=758060&view=diff
==============================================================================
--- commons/proper/math/trunk/findbugs-exclude-filter.xml (original)
+++ commons/proper/math/trunk/findbugs-exclude-filter.xml Tue Mar 24 22:17:13
2009
@@ -26,7 +26,7 @@
<!-- 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.optimization.univariate.BrentMinimizer" />
+ <Class
name="org.apache.commons.math.optimization.univariate.BrentOptimizer" />
<Method name="localMin"
params="double,double,double,double,org.apache.commons.math.analysis.UnivariateRealFunction"
returns="double" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
@@ -55,12 +55,12 @@
<!-- the following expositions of internal representation are intentional
and documented -->
<Match>
- <Class name="org.apache.commons.math.optimization.ScalarPointValuePair"/>
+ <Class name="org.apache.commons.math.optimization.RealPointValuePair"/>
<Method name="getPointRef" params="" returns="double[]" />
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
- <Class name="org.apache.commons.math.optimization.ScalarPointValuePair"/>
+ <Class name="org.apache.commons.math.optimization.RealPointValuePair"/>
<Method name="<init>" params="double[],double,boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" />
</Match>