Lines Matching refs:StorageIndex
106 typedef _StorageIndex StorageIndex; typedef
109 typedef Matrix<StorageIndex,Dynamic,1> VectorI;
110 typedef SparseMatrix<Scalar,RowMajor,StorageIndex> FactorType;
197 PermutationMatrix<Dynamic,Dynamic,StorageIndex> m_P; // Fill-reducing permutation
198 PermutationMatrix<Dynamic,Dynamic,StorageIndex> m_Pinv; // Inverse permutation
205 template<typename Scalar, typename StorageIndex>
206 void IncompleteLUT<Scalar,StorageIndex>::setDroptol(const RealScalar& droptol) in setDroptol()
215 template<typename Scalar, typename StorageIndex>
216 void IncompleteLUT<Scalar,StorageIndex>::setFillfactor(int fillfactor) in setFillfactor()
221 template <typename Scalar, typename StorageIndex>
223 void IncompleteLUT<Scalar,StorageIndex>::analyzePattern(const _MatrixType& amat) in analyzePattern()
230 SparseMatrix<Scalar,ColMajor, StorageIndex> mat1 = amat; in analyzePattern()
231 SparseMatrix<Scalar,ColMajor, StorageIndex> mat2 = amat.transpose(); in analyzePattern()
234 SparseMatrix<Scalar,ColMajor, StorageIndex> AtA = mat2 + mat1; in analyzePattern()
235 AMDOrdering<StorageIndex> ordering; in analyzePattern()
240 SparseMatrix<Scalar,ColMajor, StorageIndex> mat1 = amat; in analyzePattern()
241 COLAMDOrdering<StorageIndex> ordering; in analyzePattern()
251 template <typename Scalar, typename StorageIndex>
253 void IncompleteLUT<Scalar,StorageIndex>::factorize(const _MatrixType& amat) in factorize()
270 SparseMatrix<Scalar,RowMajor, StorageIndex> mat; in factorize()
294 ju(ii) = convert_index<StorageIndex>(ii); in factorize()
296 jr(ii) = convert_index<StorageIndex>(ii); in factorize()
306 ju(sizel) = convert_index<StorageIndex>(k); in factorize()
308 jr(k) = convert_index<StorageIndex>(sizel); in factorize()
319 ju(jpos) = convert_index<StorageIndex>(k); in factorize()
321 jr(k) = convert_index<StorageIndex>(jpos); in factorize()
351 jr(minrow) = convert_index<StorageIndex>(jj); in factorize()
352 jr(j) = convert_index<StorageIndex>(k); in factorize()
393 ju(newpos) = convert_index<StorageIndex>(j); in factorize()
395 jr(j) = convert_index<StorageIndex>(newpos); in factorize()
402 ju(len) = convert_index<StorageIndex>(minrow); in factorize()