Module matrix

Module matrix 

Source
Expand description

Matrix operations and data structures for sparse linear algebra.

This module provides efficient implementations of sparse matrix formats optimized for asymmetric diagonally dominant systems, with support for both traditional linear algebra operations and graph-based algorithms.

Re-exports§

pub use optimized::OptimizedCSRStorage;
pub use optimized::BufferPool;
pub use optimized::StreamingMatrix;

Modules§

optimized
Optimized sparse matrix implementations with SIMD acceleration and buffer pooling.
sparse
Sparse matrix storage implementations.

Structs§

SparseMatrix
Main sparse matrix implementation supporting multiple storage formats.

Enums§

SparseFormat
Sparse matrix storage formats.

Traits§

Matrix
Trait defining the interface for matrix operations.