Searched refs:VectorIx (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/IterativeLinearSolvers/ |
D | IncompleteCholesky.h | 64 typedef Matrix<StorageIndex,Dynamic, 1> VectorIx; typedef 187 …oid updateList(Ref<const VectorIx> colPtr, Ref<VectorIx> rowIdx, Ref<VectorSx> vals, const Index& … 219 Map<VectorIx> rowIdx(m_L.innerIndexPtr(), nnz); //Row indices in factorize() 220 Map<VectorIx> colPtr( m_L.outerIndexPtr(), n+1); // Pointer to the beginning of each row in factorize() 221 …VectorIx firstElt(n-1); // for each j, points to the next entry in vals that will be used in the f… in factorize() 224 VectorIx col_irow(n); // Row indices of nonzero elements in each column in factorize() 225 VectorIx col_pattern(n); in factorize() 330 rowIdx = Map<const VectorIx>(L_save.innerIndexPtr(), nnz); in factorize() 331 colPtr = Map<const VectorIx>(L_save.outerIndexPtr(), n+1); in factorize() 353 Ref<VectorIx> cirow = col_irow.head(col_nnz); in factorize() [all …]
|