pick_best_move

Function pick_best_move 

Source
pub fn pick_best_move(
    legal_moves: &mut MoveInfoList,
    key_move: Option<Move>,
) -> Option<MoveInfo>
Expand description

Pick and return the best move from a move list without allocation. When run to completion, this acts as a selection sort.