Go to the source code of this file.
|
class | Eigen::DynamicSkylineMatrix< _Scalar, _Flags > |
|
class | Eigen::internal::eval< T, IsSkyline > |
|
class | Eigen::MappedSkylineMatrix< _Scalar, _Flags > |
|
struct | Eigen::internal::skyline_product_mode< Lhs, Rhs > |
|
class | Eigen::SkylineMatrix< _Scalar, _Options > |
| The main skyline matrix class. More...
|
|
class | Eigen::SkylineMatrixBase< Derived > |
| Base class of any skyline matrices or skyline expressions. More...
|
|
class | Eigen::SkylineProduct< Lhs, Rhs, ProductMode > |
|
struct | Eigen::internal::SkylineProductReturnType< Lhs, Rhs, ProductMode > |
|
class | Eigen::SkylineVector< _Scalar, _Flags > |
|
◆ _EIGEN_SKYLINE_GENERIC_PUBLIC_INTERFACE
#define _EIGEN_SKYLINE_GENERIC_PUBLIC_INTERFACE |
( |
|
Derived, |
|
|
|
BaseClass |
|
) |
| |
◆ EIGEN_DBG_SKYLINE
#define EIGEN_DBG_SKYLINE |
( |
|
X | ) |
X |
◆ EIGEN_SKYLINE_GENERIC_PUBLIC_INTERFACE
◆ EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATOR
#define EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATOR |
( |
|
Derived, |
|
|
|
Op |
|
) |
| |
Value:template<typename OtherDerived> \
{ \
return Base::operator Op(
other.derived()); \
} \
EIGEN_STRONG_INLINE Derived&
operator Op(
const Derived&
other) \
{ \
return Base::operator Op(
other); \
}
Definition at line 27 of file SkylineUtil.h.
◆ EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATORS
#define EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATORS |
( |
|
Derived | ) |
|
Value:
EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATOR(Derived, +=) \
EIGEN_SKYLINE_INHERIT_ASSIGNMENT_OPERATOR(Derived, -=) \
EIGEN_SKYLINE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, *=) \
EIGEN_SKYLINE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR(Derived, /=)
Definition at line 45 of file SkylineUtil.h.
◆ EIGEN_SKYLINE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR
#define EIGEN_SKYLINE_INHERIT_SCALAR_ASSIGNMENT_OPERATOR |
( |
|
Derived, |
|
|
|
Op |
|
) |
| |
Value:template<typename Other> \
EIGEN_STRONG_INLINE Derived&
operator Op(
const Other&
scalar) \
{ \
return Base::operator Op(
scalar); \
}
Definition at line 38 of file SkylineUtil.h.