MOAB
4.9.3pre
|
Go to the source code of this file.
#define EIGEN_DBG_SPARSE | ( | X | ) | X |
Definition at line 18 of file SparseUtil.h.
#define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR | ( | Derived, | |
Op | |||
) |
template<typename OtherDerived> \ EIGEN_STRONG_INLINE Derived& operator Op(const Eigen::SparseMatrixBase<OtherDerived>& other) \ { \ return Base::operator Op(other.derived()); \ } \ EIGEN_STRONG_INLINE Derived& operator Op(const Derived& other) \ { \ return Base::operator Op(other); \ }
Definition at line 21 of file SparseUtil.h.
#define EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATORS | ( | Derived | ) | EIGEN_SPARSE_INHERIT_ASSIGNMENT_OPERATOR(Derived, =) |
Definition at line 39 of file SparseUtil.h.
#define EIGEN_SPARSE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR | ( | Derived, | |
Op | |||
) |
template<typename Other> \ EIGEN_STRONG_INLINE Derived& operator Op(const Other& scalar) \ { \ return Base::operator Op(scalar); \ }
Definition at line 32 of file SparseUtil.h.
#define EIGEN_SPARSE_PUBLIC_INTERFACE | ( | Derived | ) | EIGEN_GENERIC_PUBLIC_INTERFACE(Derived) |
Definition at line 43 of file SparseUtil.h.