Added findbugs exception for CMAES.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1591212 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2014-04-30 08:21:15 +00:00
parent 3cfd84f86a
commit 49b2b9898e
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,11 @@
<Method name="altmov" params="int,double" returns="double[]" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<Match>
<Class name="org.apache.commons.math3.optim.nonlinear.scalar.noderiv.CMAESOptimizer" />
<Method name="doOptimize" params="" returns="org.apache.commons.math3.optim.PointValuePair" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<!-- The following equality test is intentional and needed for semantic purposes -->
<Match>