Home | History | Annotate | Download | only in SparseLU

Lines Matching full:column

86      * Return the array of nonzero values packed by column
97 * Return the pointers to the beginning of each column in \ref valuePtr()
120 * Return the location in \em rowvaluePtr() which starts each column
130 * Return the array of column-to-supernode mapping
139 * Return the array of supernode-to-column mapping
167 Scalar* m_nzval; //array of nonzero values packed by column
168 Index* m_nzval_colptr; //nzval_colptr[j] Stores the location in nzval[] which starts column j
170 Index* m_rowind_colptr; //rowind_colptr[j] stores the location in rowind[] which starts column j
171 Index* m_col_to_sup; // col_to_sup[j] is the supernode number to which column j belongs
172 Index* m_sup_to_col; //sup_to_col[s] points to the starting column of the s-th supernode
178 * \brief InnerIterator class to iterate over nonzero values of the current column in the supernodal matrix L
219 const Index m_outer; // Current column
221 Index m_idval; // Index to browse the values in the current column
222 const Index m_startidval; // Start of the column value
223 const Index m_endidval; // End of the column value
225 Index m_endidrow; // End index of row indices of the current column
243 Index fsupc = supToCol()[k]; // First column of the current supernode
244 Index istart = rowIndexPtr()[fsupc]; // Pointer index to the subscript of the current column
265 // The supernode has more than one column