robust_rs_core/solver.rs
1//! Iterative solver utilities shared across estimators.
2//!
3//! The *regression* IRLS driver lives in the `robust-rs` crate (it needs linear
4//! algebra). This module holds the scale-free machinery: the [`Control`]
5//! convergence controller shared by the location and scale M-estimators (each of
6//! which runs its own bespoke fixed-point iteration).
7
8mod control;
9
10pub use self::control::Control;