Skip to main content

extensive_form/
lib.rs

1//! # extensive-form
2//!
3//! A library for extensive-form games with game trees, subgame perfect equilibrium,
4//! backward induction, and information sets.
5
6pub mod tree;
7pub mod node;
8pub mod information;
9pub mod backward;
10pub mod subgame;