1//! Sparse matrix structures (CSR format) 2//! 3//! This module provides Compressed Sparse Row (CSR) format for efficient 4//! storage and matrix-vector operations with sparse matrices. 5 6mod csr; 7 8pub use csr::{BlockedCsr, CsrBuilder, CsrMatrix};