mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-04-23 10:09:36 +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.
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user