pub fn spmm_csc_pattern(
    a: &SparsityPattern,
    b: &SparsityPattern
) -> SparsityPattern
Expand description

Sparse matrix multiplication pattern construction, C <- A * B.

Assumes that the sparsity patterns both represent CSC matrices, and the result is also represented as the sparsity pattern of a CSC matrix.

Panics

Panics if the patterns, when interpreted as CSC patterns, are not compatible for matrix multiplication.