Overview

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.

Usage examples

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(board: &mut B, depth: u16) -> f32 { match board.gameresult() { Some(GameResult::WhiteWin) => return 100.0, Some(GameResult::BlackWin) => return -100.0, Some(GameResult::Draw) => return 0.0, None => (), } if depth == 0 { board.staticeval() } else { let sidetomove = board.sidetomove(); let mut moves = vec![]; board.generatemoves(&mut moves); let childevaluations = moves.intoiter().map(|mv| { let reversemove = board.domove(mv); let eval = minimax(board, depth - 1); board.reversemove(reversemove); eval }); match sidetomove { Color::White => childevaluations .maxby(|a, b| a.partialcmp(b).unwrap()) .unwrap(), Color::Black => childevaluations .minby(|a, b| a.partial_cmp(b).unwrap()) .unwrap(), } } }

```