mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-08 09:49:03 +08:00
Fixes 2780
This commit is contained in:
parent
6ea33f95df
commit
7e655c9a5d
@ -57,7 +57,7 @@ EIGEN_STRONG_INLINE void trsmKernelL<Scalar, Index, Mode, Conjugate, TriStorageO
|
||||
Index rs = size - k - 1; // remaining size
|
||||
Index s = TriStorageOrder == RowMajor ? (IsLower ? 0 : i + 1) : IsLower ? i + 1 : i - rs;
|
||||
|
||||
Scalar a = (Mode & UnitDiag) ? Scalar(1) : Scalar(1) / conj(tri(i, i));
|
||||
Scalar a = (Mode & UnitDiag) ? Scalar(1) : Scalar(Scalar(1)/conj(tri(i,i)));
|
||||
for (Index j = 0; j < otherSize; ++j) {
|
||||
if (TriStorageOrder == RowMajor) {
|
||||
Scalar b(0);
|
||||
|
Loading…
x
Reference in New Issue
Block a user