pub fn pre_selection_then_brute_force_search(
    wishes: &[(Skill, u8)],
    all_armor_slices: AllArmorSlices<'_>,
    gender: Gender,
    weapon_slots: [u8; 3]
) -> Vec<Build>
Expand description

Calls [search_best_candidates] on each slice before calling [brute_force_search_builds]. Returns the results of the brute force search. This is the recommended function to call when we want to search builds.