Home | History | Annotate | Download | only in SparseCore

Lines Matching refs:MatrixType

17 template<typename MatrixType, int Mode>
18 struct traits<SparseTriangularView<MatrixType,Mode> >
19 : public traits<MatrixType>
24 template<typename MatrixType, int Mode> class SparseTriangularView
25 : public SparseMatrixBase<SparseTriangularView<MatrixType,Mode> >
27 enum { SkipFirst = ((Mode&Lower) && !(MatrixType::Flags&RowMajorBit))
28 || ((Mode&Upper) && (MatrixType::Flags&RowMajorBit)),
43 typedef typename MatrixType::Nested MatrixTypeNested;
47 inline SparseTriangularView(const MatrixType& matrix) : m_matrix(matrix) {}
63 template<typename MatrixType, int Mode>
64 class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNestedCleaned::InnerIterator
127 template<typename MatrixType, int Mode>
128 class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public MatrixTypeNestedCleaned::ReverseInnerIterator