Crate mtdf

Source
Expand description

An implementation of the 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.

Modules§

game
Holds the base class for a game that MTD(f) can solve. To use the crate, implement GameState for your game.
mtdf
This module’s primary struct is MTDBot, which runs the MTD(f) algorithm on a game.