A collection of minimal traits for abstractly representing 2-player board games. The traits can be implemented for any sequential, deterministic, perfect-information game. This includes many popular games such as chess, go, xiangqi, othello, connect four and tic-tac-toe.
No implementations are provided in this crate.
Count the total number of moves possible at n moves deep. Commonly called a perf test and used to check the correctness of move generation:
rust
pub fn perft<B: Board>(board: &mut B, depth: u16) -> u64 {
if depth == 0 {
1
} else {
let mut moves = vec![];
board.generate_moves(&mut moves);
moves
.into_iter()
.map(|mv| {
let reverse_move = board.do_move(mv);
let num_moves = perft(board, depth - 1);
board.reverse_move(reverse_move);
num_moves
})
.sum()
}
}
The Minimax algorithm, running n plies ahead:
```rust
fn minimax
```