othello engine written in Rust
Find a file
2025-11-04 01:04:50 -06:00
.cargo cleanup, add bench 2025-10-30 04:26:49 -05:00
benches restructured, flips working, benchmarking flips, got some basic terminal rendering 2025-11-04 01:04:50 -06:00
src restructured, flips working, benchmarking flips, got some basic terminal rendering 2025-11-04 01:04:50 -06:00
.gitignore init 2025-10-29 21:51:24 -05:00
Cargo.lock restructured, flips working, benchmarking flips, got some basic terminal rendering 2025-11-04 01:04:50 -06:00
Cargo.toml restructured, flips working, benchmarking flips, got some basic terminal rendering 2025-11-04 01:04:50 -06:00
README.md init 2025-10-29 21:51:24 -05:00

Othello

Project Structure

├── iagorithms <-- contains expert system AI library
│   └── ...
├── othello <-- contains main binary and library for Othello
│   └── ...
└── README.md <-- you are here

Game Representation

The game state is represented by what's known as a BitBoard. I knew about these already from researching Chess programming in the past.

This does mean that when calling upon iagorithms' it will need to explode the bitboard into a format that can be pattern matched on.