Home | History | Annotate | Download | only in SparseCore

Lines Matching refs:StorageIndex

61 int coletree(const MatrixType& mat, IndexVector& parent, IndexVector& firstRowElt, typename MatrixType::StorageIndex *perm=0)
63 typedef typename MatrixType::StorageIndex StorageIndex;
64 StorageIndex nc = convert_index<StorageIndex>(mat.cols()); // Number of columns
65 StorageIndex m = convert_index<StorageIndex>(mat.rows());
66 StorageIndex diagSize = (std::min)(nc,m);
77 for (StorageIndex col = 0; col < nc; col++)
79 StorageIndex pcol = col;
91 StorageIndex rset, cset, rroot;
92 for (StorageIndex col = 0; col < nc; col++)
101 StorageIndex pcol = col;
109 StorageIndex row = firstRowElt(i);
132 typedef typename IndexVector::Scalar StorageIndex;
133 StorageIndex current = n, first, next;
180 typedef typename IndexVector::Scalar StorageIndex;
182 StorageIndex postnum;
190 for (StorageIndex v = n-1; v >= 0; v--)
192 StorageIndex dad = parent(v);