[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:
parent
bda25b4029
commit
fdbdb5eba8
|
@ -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++) {
|
||||||
|
|
Loading…
Reference in New Issue