Go to the source code of this file.
◆ CHECK_MMTR
#define CHECK_MMTR |
( |
|
DEST, |
|
|
|
TRI, |
|
|
|
OP |
|
) |
| |
Value:{ \
ref3 = DEST; \
ref2 = ref1 = DEST; \
DEST.template triangularView<TRI>()
OP; \
ref2.template triangularView<TRI>() \
= ref1.template triangularView<TRI>(); \
VERIFY_IS_APPROX(DEST,ref2); \
\
DEST = ref3; \
ref3 = ref2; \
ref3.diagonal() = DEST.diagonal(); \
DEST.template triangularView<TRI|ZeroDiag>() OP; \
VERIFY_IS_APPROX(DEST,ref3); \
}
Definition at line 12 of file product_mmtr.cpp.
◆ EIGEN_DECLARE_TEST()
EIGEN_DECLARE_TEST |
( |
product_mmtr |
| ) |
|
◆ mmtr()
template<typename Scalar >