surge-sparse 0.1.0

Sparse matrix infrastructure: KLU solver, COO-to-CSC conversion, complex sparse utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: LicenseRef-PolyForm-Noncommercial-1.0.0
//! Validated sparse matrix infrastructure for Surge solvers.

mod complex_klu;
mod csc;
mod error;
mod klu;

pub use complex_klu::ComplexKluSolver;
pub use csc::{CscMatrix, Triplet};
pub use error::{SparseError, SparseResult};
pub use klu::KluSolver;