7 #ifndef SPECTRA_DENSE_SYM_MAT_PROD_H
8 #define SPECTRA_DENSE_SYM_MAT_PROD_H
28 template <
typename Scalar_,
int Uplo = Eigen::Lower,
int Flags = Eigen::ColMajor>
38 using Index = Eigen::Index;
39 using Matrix = Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic, Flags>;
40 using Vector = Eigen::Matrix<Scalar, Eigen::Dynamic, 1>;
41 using MapConstVec = Eigen::Map<const Vector>;
42 using MapVec = Eigen::Map<Vector>;
43 using ConstGenericMatrix =
const Eigen::Ref<const Matrix>;
45 ConstGenericMatrix m_mat;
56 template <
typename Derived>
61 static_cast<int>(Derived::PlainObject::IsRowMajor) ==
static_cast<int>(Matrix::IsRowMajor),
62 "DenseSymMatProd: the \"Flags\" template parameter does not match the input matrix (Eigen::ColMajor/Eigen::RowMajor)");
68 Index
rows()
const {
return m_mat.rows(); }
72 Index
cols()
const {
return m_mat.cols(); }
83 MapConstVec x(x_in, m_mat.cols());
84 MapVec y(y_out, m_mat.rows());
85 y.noalias() = m_mat.template selfadjointView<Uplo>() * x;
91 Matrix
operator*(
const Eigen::Ref<const Matrix>& mat_in)
const
93 return m_mat.template selfadjointView<Uplo>() * mat_in;
Matrix operator*(const Eigen::Ref< const Matrix > &mat_in) const
Scalar operator()(Index i, Index j) const
void perform_op(const Scalar *x_in, Scalar *y_out) const
DenseSymMatProd(const Eigen::MatrixBase< Derived > &mat)