improved consistency in class naming with respect to functions in the analysis package

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@758060 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-03-24 22:17:13 +00:00
parent 2c84116a4c
commit 96db008f3b
1 changed files with 3 additions and 3 deletions

View File

@ -26,7 +26,7 @@
<!-- the following equality tests are part of the reference algorithms --> <!-- the following equality tests are part of the reference algorithms -->
<!-- which already know about limited precision of the double numbers --> <!-- which already know about limited precision of the double numbers -->
<Match> <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" /> <Method name="localMin" params="double,double,double,double,org.apache.commons.math.analysis.UnivariateRealFunction" returns="double" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" /> <Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match> </Match>
@ -55,12 +55,12 @@
<!-- the following expositions of internal representation are intentional and documented --> <!-- the following expositions of internal representation are intentional and documented -->
<Match> <Match>
<Class name="org.apache.commons.math.optimization.ScalarPointValuePair"/> <Class name="org.apache.commons.math.optimization.RealPointValuePair"/>
<Method name="getPointRef" params="" returns="double[]" /> <Method name="getPointRef" params="" returns="double[]" />
<Bug pattern="EI_EXPOSE_REP" /> <Bug pattern="EI_EXPOSE_REP" />
</Match> </Match>
<Match> <Match>
<Class name="org.apache.commons.math.optimization.ScalarPointValuePair"/> <Class name="org.apache.commons.math.optimization.RealPointValuePair"/>
<Method name="&lt;init>" params="double[],double,boolean" returns="void" /> <Method name="&lt;init>" params="double[],double,boolean" returns="void" />
<Bug pattern="EI_EXPOSE_REP2" /> <Bug pattern="EI_EXPOSE_REP2" />
</Match> </Match>