pub fn available_constructions(
levels: u32,
strength: u32,
) -> Vec<(&'static str, usize, usize)>Expand description
Get information about available constructions for given parameters.
Returns a list of construction options with their runs and max factors.
ยงExample
use taguchi::available_constructions;
let options = available_constructions(3, 2);
for (name, runs, max_factors) in options {
println!("{}: {} runs, up to {} factors", name, runs, max_factors);
}