mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Removed weird self assignment.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user