pub const VERSIONS: &[&str] = &[
"random",
"minimax",
"negamax",
"pst",
"sort_moves",
"iterative_deepening",
"quiescence",
"quiescence_en_passant",
"checks_add_depth",
"killer_heuristic",
"history_heuristic",
"tt",
"eval_tt",
"tt_two_tier",
"null_move_pruning",
"late_move_reductions",
"tapered_eval",
"positional_eval",
"capture_with_check_eval",
"pseudo_pins",
"move_flag_eval",
"lazy_smp",
"lockless_hashing",
"syzygy_tablebase",
"opening_book",
];
pub const BASE_VERSIONS: &[&str] = &[
"base_basic",
"base_magic_number",
"base_clone",
"base_parallel",
"base_array",
"base_parallel_array",
];