wowlab_sentinel/strategy/factorial/mod.rs
1//! Factorial-screening strategy components shared by the tournament strategy.
2
3mod interactions;
4mod screening;
5mod types;
6
7pub(crate) use interactions::select_items_for_interaction;
8pub(crate) use screening::{reconstruct_model, run_screening};
9pub(crate) use types::{
10 FactorialItem, FactorialSlot, InteractionEstimate, MainEffectEstimate, WorkUnitKind,
11 decode_interaction_tag, decode_main_effect_tag, encode_interaction_tag, encode_main_effect_tag,
12 tag_kind,
13};