[MATH-1045] Removed spurious code fragment with an impossible code path.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1537616 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-10-31 20:07:38 +00:00
parent bda25b4029
commit fdbdb5eba8
1 changed files with 0 additions and 9 deletions

View File

@ -948,15 +948,6 @@ public class EigenDecomposition {
} }
} }
// Vectors of isolated roots
for (int i = 0; i < n; i++) {
if (i < 0 | i > n - 1) {
for (int j = i; j < n; j++) {
matrixP[i][j] = matrixT[i][j];
}
}
}
// Back transformation to get eigenvectors of original matrix // Back transformation to get eigenvectors of original matrix
for (int j = n - 1; j >= 0; j--) { for (int j = n - 1; j >= 0; j--) {
for (int i = 0; i <= n - 1; i++) { for (int i = 0; i <= n - 1; i++) {