Skip to content

Commit b8b88c5

Browse files
Updated spotbugs exclude filter after API changes in the library.
1 parent 4767e20 commit b8b88c5

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

hipparchus-core/src/conf/spotbugs-exclude-filter.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@
6161
</Or>
6262
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
6363
</Match>
64-
<Match>
65-
<Class name="org.hipparchus.linear.EigenDecomposition" />
66-
<Method name="findEigenVectors" params="double[][]" returns="void" />
67-
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
68-
</Match>
6964

7065
<!-- The following equality test is intentional and needed for rounding purposes -->
7166
<Match>
@@ -265,7 +260,16 @@
265260
<Bug pattern="EI_EXPOSE_REP" />
266261
</Match>
267262
<Match>
268-
<Class name="org.hipparchus.linear.EigenDecomposition"/>
263+
<Class name="org.hipparchus.linear.EigenDecompositionSymmetric"/>
264+
<Or>
265+
<Method name="getD"/>
266+
<Method name="getV"/>
267+
<Method name="getVT"/>
268+
</Or>
269+
<Bug pattern="EI_EXPOSE_REP" />
270+
</Match>
271+
<Match>
272+
<Class name="org.hipparchus.linear.EigenDecompositionNonSymmetric"/>
269273
<Or>
270274
<Method name="getD"/>
271275
<Method name="getV"/>

0 commit comments

Comments
 (0)