Skip to main content

gam_models/
outer_subsample.rs

1//! Outer-score row subsampling — re-exported from `gam-problem`.
2//!
3//! The canonical definitions of [`OuterScoreSubsample`], [`RowSet`], and
4//! [`WeightedOuterRow`] are neutral low-layer primitives that live in the
5//! `gam-problem` crate so the `CustomFamily` trait layer (and the model
6//! families above it) can depend on them downward without duplication. This
7//! module is a stable re-export so existing `gam_models::outer_subsample::*`
8//! and `crate::outer_subsample::*` paths keep resolving.
9
10pub use gam_problem::outer_subsample::*;