mtdf 0.1.1

A (bad) Rust implementation of the MTD(f) algorithm.
Documentation
1
2
3
4
5
6
7
8
//! An implementation of the [MTD(f)](https://en.wikipedia.org/wiki/MTD(f)) algorithm in Rust.
//!
//! The MTD(f) solve two-player zero-sum games. To use this package, you need to implement
//! the trait [`game::GameState`] for your game. Then, use [`mtdf::MTDBot`] to run MTD(f)
//! for your game.

pub mod game;
pub mod mtdf;