pub fn column_counts_ata<'m, 'n, I: Index>(
col_counts: &mut [I],
min_col: &mut [I],
AT: SymbolicSparseColMatRef<'_, I>,
col_perm: Option<PermRef<'_, I>>,
etree: EliminationTreeRef<'_, I>,
post: &[I],
stack: &mut MemStack,
)Expand description
computes the column counts of the cholesky factor of $A^\top A$
col_countshas lengthA.ncols()min_colhas lengthA.nrows()col_permhas lengthA.ncols(): fill reducing permutationetreehas lengthA.ncols(): column elimination tree of $A A^\top$posthas lengthA.ncols(): postordering ofetree
ยงwarning
the function takes as input A.transpose(), not A