Skip to main content

tensor4all_tcicore/matrixluci/
mod.rs

1#![warn(missing_docs)]
2//! Low-level LUCI / rrLU substrate.
3//!
4//! The dense LU path in this crate is a tensor4all-owned port derived from
5//! `faer` full-pivoting LU ideas and primitives. Keep that attribution explicit
6//! in user-facing documentation.
7
8pub mod block_rook;
9pub mod dense;
10pub mod error;
11pub mod factors;
12pub mod kernel;
13pub mod scalar;
14pub mod source;
15pub mod types;
16
17pub use block_rook::LazyBlockRookKernel;
18pub use dense::DenseFaerLuKernel;
19pub use error::{MatrixLuciError, Result};
20pub use factors::CrossFactors;
21pub use kernel::PivotKernel;
22pub use scalar::Scalar;
23pub use source::{CandidateMatrixSource, DenseMatrixSource, LazyMatrixSource};
24pub use types::{DenseOwnedMatrix, PivotKernelOptions, PivotSelectionCore};