Added findbugs exclude filter for class copied to the new optim package.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1421434 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2012-12-13 19:18:55 +00:00
parent 96f6fd10b6
commit 1db324482c
1 changed files with 5 additions and 0 deletions

View File

@ -83,6 +83,11 @@
<Method name="equals" params="java.lang.Object" returns="boolean" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<Match>
<Class name="org.apache.commons.math3.optim.linear.LinearConstraint" />
<Method name="equals" params="java.lang.Object" returns="boolean" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<!-- The following equality test is intentional and needed for rounding purposes -->
<Match>