mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Remove "using namespace Eigen" from blas/common.h.
This commit is contained in:
committed by
Rasmus Munk Larsen
parent
6ed4d80cc8
commit
8a73c6490f
@@ -62,6 +62,8 @@ EIGEN_LAPACK_FUNC(getrs)
|
||||
MatrixType lu(a, *n, *n, *lda);
|
||||
MatrixType B(b, *n, *nrhs, *ldb);
|
||||
|
||||
using Eigen::UnitLower;
|
||||
using Eigen::Upper;
|
||||
for (int i = 0; i < *n; ++i) ipiv[i]--;
|
||||
if (OP(*trans) == NOTR) {
|
||||
B = PivotsType(ipiv, *n) * B;
|
||||
|
||||
Reference in New Issue
Block a user