gam_terms/inference/mod.rs
1//! Basis/structure-level inference instruments that descended into `gam-terms`
2//! during the #1521 crate carve.
3//!
4//! These modules depend only on `gam-terms` and crates below it (gam-linalg,
5//! gam-spec, gam-math, gam-problem). They were hoisted out of the monolith's
6//! `gam::inference::*` namespace; the root crate keeps the old paths valid via
7//! re-exports.
8
9pub mod formula_dsl;
10pub mod higher_order;
11pub mod lawley;
12pub mod smooth_test;
13pub mod structure_evidence;