mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
trivial compilation fix in SVD
This commit is contained in:
@@ -178,7 +178,7 @@ void SVD<MatrixType>::compute(const MatrixType& matrix)
|
|||||||
|
|
||||||
|
|
||||||
// Set up the final bidiagonal matrix or order p.
|
// 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)
|
if (nct < n)
|
||||||
m_sigma[nct] = matA(nct,nct);
|
m_sigma[nct] = matA(nct,nct);
|
||||||
if (m < p)
|
if (m < p)
|
||||||
|
|||||||
Reference in New Issue
Block a user