fixed a missing change from Math to FastMath

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1002042 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-09-28 07:19:43 +00:00
parent f210f2fbce
commit 172a818945
1 changed files with 2 additions and 2 deletions

View File

@ -146,8 +146,8 @@ public class EigenDecompositionImpl implements EigenDecomposition {
for (int j = i + 1; j < columns; ++j) {
final double mij = matrix.getEntry(i, j);
final double mji = matrix.getEntry(j, i);
if (FastMath.abs(mij - mji) > (FastMath.max(FastMath.abs(mij), Math
.abs(mji)) * eps)) {
if (FastMath.abs(mij - mji) >
(FastMath.max(FastMath.abs(mij), FastMath.abs(mji)) * eps)) {
return false;
}
}