Removed weird self assignment.

This commit is contained in:
Christoph Hertzberg
2014-10-24 13:19:19 +02:00
parent 04ffb9956e
commit 1fa793cb97
2 changed files with 1 additions and 3 deletions

View File

@@ -824,7 +824,7 @@ void BDCSVD<MatrixType>::perturbCol0
zhat.setZero();
return;
}
Index last = last = perm(m-1);
Index last = perm(m-1);
// The offset permits to skip deflated entries while computing zhat
for (Index k = 0; k < n; ++k)
{