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:
parent
f210f2fbce
commit
172a818945
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue