extensive-form 0.1.0

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

pub mod tree;
pub mod node;
pub mod information;
pub mod backward;
pub mod subgame;