Skip to content

Commit

Permalink
Updated spotbugs exclude filter after API changes in the library.
Browse files Browse the repository at this point in the history
  • Loading branch information
BryanCazabonne committed Oct 3, 2023
1 parent 4767e20 commit b8b88c5
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions hipparchus-core/src/conf/spotbugs-exclude-filter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,6 @@
</Or>
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>
<Match>
<Class name="org.hipparchus.linear.EigenDecomposition" />
<Method name="findEigenVectors" params="double[][]" returns="void" />
<Bug pattern="FE_FLOATING_POINT_EQUALITY" />
</Match>

<!-- The following equality test is intentional and needed for rounding purposes -->
<Match>
Expand Down Expand Up @@ -265,7 +260,16 @@
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.hipparchus.linear.EigenDecomposition"/>
<Class name="org.hipparchus.linear.EigenDecompositionSymmetric"/>
<Or>
<Method name="getD"/>
<Method name="getV"/>
<Method name="getVT"/>
</Or>
<Bug pattern="EI_EXPOSE_REP" />
</Match>
<Match>
<Class name="org.hipparchus.linear.EigenDecompositionNonSymmetric"/>
<Or>
<Method name="getD"/>
<Method name="getV"/>
Expand Down

0 comments on commit b8b88c5

Please sign in to comment.