mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-13 00:21:49 +08:00
trivial compilation fix in SVD
This commit is contained in:
parent
3bbd1b3114
commit
622f2d5eae
@ -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)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user