wowlab_common/sim/permutations/mod.rs
1//! Permutation calculator for Best in Bags.
2
3mod cost;
4mod space;
5
6pub use cost::{CostAnalysis, ScreeningRow, compute_cost_analysis};
7pub use space::{
8 Candidate, CandidateSource, MAX_CANDIDATES_PER_SLOT, MAX_PERMUTATION_TOTAL, PermutationError,
9 PermutationSpace, SlotCandidates, build_space, build_space_for_selection, tournament_payload,
10};
11
12#[cfg(test)]
13mod tests;