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,
A strategy for generating CSC matrices.