[][src]Module rubot::alpha_beta

A deterministic game bot using alpha beta pruning.

Structs

Bot

A game bot which analyses its moves using alpha beta pruning with iterative deepening. In case select terminates before condition returned true, the result is always the best possible move. While this bot caches some data during computation, it does not require a lot of memory and will not store anything between different select calls.