Lines Matching refs:Index
82 eigen_assert(false && "Index type different than int is not supported yet");
136 template<typename Scalar, int Flags, typename Index>
137 MappedSparseMatrix<Scalar,Flags,Index> viewAsEigen(cholmod_sparse& cm)
139 return MappedSparseMatrix<Scalar,Flags,Index>
140 (cm.nrow, cm.ncol, reinterpret_cast<Index*>(cm.p)[cm.ncol],
141 reinterpret_cast<Index*>(cm.p), reinterpret_cast<Index*>(cm.i),reinterpret_cast<Scalar*>(cm.x) );
163 typedef typename MatrixType::Index Index;
187 inline Index cols() const { return m_cholmodFactor->n; }
188 inline Index rows() const { return m_cholmodFactor->n; }
288 const Index size = m_cholmodFactor->n;
308 const Index size = m_cholmodFactor->n;