Skip to main content

surge_sparse/
lib.rs

1// SPDX-License-Identifier: LicenseRef-PolyForm-Noncommercial-1.0.0
2//! Validated sparse matrix infrastructure for Surge solvers.
3
4mod complex_klu;
5mod csc;
6mod error;
7mod klu;
8
9pub use complex_klu::ComplexKluSolver;
10pub use csc::{CscMatrix, Triplet};
11pub use error::{SparseError, SparseResult};
12pub use klu::KluSolver;