| Crates.io | tiqtak |
| lib.rs | tiqtak |
| version | 1.0.7 |
| created_at | 2025-05-04 02:06:08.948615+00 |
| updated_at | 2025-07-14 21:39:58.205792+00 |
| description | simple to use Checkers engine |
| homepage | |
| repository | https://github.com/tolumide-ng/tiqtak |
| max_upload_size | |
| id | 1659328 |
| size | 91,197 |
Simple Checkers engine, that handles all the checkers game logic for you, so you don't have to care.
The current implementation uses MCTS(Monte-Carlo Tree Search), in the future, this program might be extended to allow users provide their desired search heuristic algorithm
Available on npm and crates.io
Simply install flamegraph with cargo or check FlamegraphRs
Simply clone this repository and cd into it
To use the rust version directly, run: cargo run or cargo watch depending on the mode
To generate the wasm build for js target, run:
a. wasm-pack build --target bundler for npm targets
b. wasm-pack build --target web if you're trying to reference the build directly locally
nb: you'd find the build in the pkg folder (root folder)
The board representation
MCTS approach?