board-game-rs

Crates.io CI status

A Board abstraction for deterministic two player games. This allows for code to be generic over the actual game, so it only needs to written once.

Features

Currently, the implemented games are:

Most game implementations are heavily optimized, using bitboards or other techniques where appropriate.

There are also some utility boards:

Utilities in this crate that work for any Board:

This crate is also used as the foundation for kZero, a general AlphaZero implementation.

Examples

List the available moves on a board and play a random one.

```rust let mut board = AtaxxBoard::default (); println!("{}", board);

board.availablemoves().unwrap().foreach( | mv| { println!("{:?}", mv) });

let mv = board.randomavailablemove(&mut rng).unwrap(); println!("Picked move {:?}", mv); board.play(mv).unwrap(); println!("{}", board); ```

Get the best move according to MCTS

```rust

let board = AtaxxBoard::default (); println!("{}", board);

let mut bot = MCTSBot::new(1000, 2.0, threadrng()); println!("{:?}", bot.selectmove(&board)) ```