Function csc

Source
pub fn csc<T>(
    value_strategy: T,
    rows: impl Into<DimRange>,
    cols: impl Into<DimRange>,
    max_nonzeros: usize,
) -> impl Strategy<Value = CscMatrix<T::Value>>
where T: Strategy + Clone + 'static, T::Value: Scalar,
Expand description

A strategy for generating CSC matrices.

OSZAR »