Home | History | Annotate | Download | only in OrderingMethods

Lines Matching refs:perm

61     void operator()(const MatrixType& mat, PermutationType& perm)
69 internal::minimum_degree_ordering(symm, perm);
74 void operator()(const SparseSelfAdjointView<SrcType, SrcUpLo>& mat, PermutationType& perm)
80 internal::minimum_degree_ordering(C, perm);
102 void operator()(const MatrixType& /*mat*/, PermutationType& perm)
104 perm.resize(0);
124 /** Compute the permutation vector \a perm form the sparse matrix \a mat
128 void operator() (const MatrixType& mat, PermutationType& perm)
150 perm.resize(n);
151 for (StorageIndex i = 0; i < n; i++) perm.indices()(p(i)) = i;