Home | History | Annotate | Download | only in SparseCore

Lines Matching defs:SparseMatrixType

82     typedef SparseMatrix<_Scalar, _Options, _Index> SparseMatrixType;
83 typedef typename internal::remove_all<typename SparseMatrixType::Nested>::type _MatrixTypeNested;
84 typedef Block<SparseMatrixType, BlockRows, BlockCols, true> BlockType;
92 class InnerIterator: public SparseMatrixType::InnerIterator
96 : SparseMatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
103 class ReverseInnerIterator: public SparseMatrixType::ReverseInnerIterator
107 : SparseMatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer)
115 inline BlockImpl(const SparseMatrixType& xpr, int i)
119 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols)
126 typedef typename internal::remove_all<typename SparseMatrixType::Nested>::type _NestedMatrixType;
148 typename SparseMatrixType::Storage newdata(m_matrix.data().allocatedSize() - block_size + nnz);
242 typename SparseMatrixType::Nested m_matrix;