tensor4all_treetn/linsolve/common/mod.rs
1//! Common infrastructure for linear equation solvers.
2//!
3//! This module provides shared utilities used by both square (V_in = V_out)
4//! and general (V_in ≠ V_out) linear equation solvers.
5
6mod environment;
7mod options;
8mod projected_operator;
9
10pub use environment::{EnvironmentCache, NetworkTopology};
11pub use options::LinsolveOptions;
12pub use projected_operator::ProjectedOperator;