summaryrefslogtreecommitdiff
path: root/examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h')
-rw-r--r--examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h b/examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h
index 39c5b59ff..a21be8050 100644
--- a/examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h
+++ b/examples/ThirdPartyLibs/Eigen/src/Core/products/SelfadjointProduct.h
@@ -109,10 +109,10 @@ struct selfadjoint_product_selector<MatrixType,OtherType,UpLo,false>
internal::general_matrix_matrix_triangular_product<Index,
Scalar, OtherIsRowMajor ? RowMajor : ColMajor, OtherBlasTraits::NeedToConjugate && NumTraits<Scalar>::IsComplex,
Scalar, OtherIsRowMajor ? ColMajor : RowMajor, (!OtherBlasTraits::NeedToConjugate) && NumTraits<Scalar>::IsComplex,
- IsRowMajor ? RowMajor : ColMajor, UpLo>
+ IsRowMajor ? RowMajor : ColMajor, MatrixType::InnerStrideAtCompileTime, UpLo>
::run(size, depth,
- &actualOther.coeffRef(0,0), actualOther.outerStride(), &actualOther.coeffRef(0,0), actualOther.outerStride(),
- mat.data(), mat.outerStride(), actualAlpha, blocking);
+ actualOther.data(), actualOther.outerStride(), actualOther.data(), actualOther.outerStride(),
+ mat.data(), mat.innerStride(), mat.outerStride(), actualAlpha, blocking);
}
};