trivial compilation fix in SVD

This commit is contained in:
Gael Guennebaud 2008-09-03 15:52:44 +00:00
parent 3bbd1b3114
commit 622f2d5eae

View File

@ -178,7 +178,7 @@ void SVD<MatrixType>::compute(const MatrixType& matrix)
// Set up the final bidiagonal matrix or order p.
int p = min(n,m+1);
int p = std::min(n,m+1);
if (nct < n)
m_sigma[nct] = matA(nct,nct);
if (m < p)