mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Enable use of evaluators for noalias and lazyProduct, add conversion to scalar for inner products
This commit is contained in:
@@ -199,7 +199,11 @@ template<typename Derived> class MatrixBase
|
||||
|
||||
template<typename OtherDerived>
|
||||
EIGEN_DEVICE_FUNC
|
||||
#ifdef EIGEN_TEST_EVALUATORS
|
||||
const Product<Derived,OtherDerived,LazyProduct>
|
||||
#else
|
||||
const typename LazyProductReturnType<Derived,OtherDerived>::Type
|
||||
#endif
|
||||
lazyProduct(const MatrixBase<OtherDerived> &other) const;
|
||||
|
||||
template<typename OtherDerived>
|
||||
|
||||
Reference in New Issue
Block a user