Skip to main content

oxicuda_solver/helpers/
mod.rs

1//! Helper utilities for solver operations.
2//!
3//! Provides pivot selection, row swapping, and condition number estimation
4//! routines used internally by the dense decomposition algorithms.
5
6pub mod condition;
7pub mod pivot;