neumann 0.1.0

Game Theory algorithms in Rust.
Documentation
1
2
3
4
5
6
7
8
use ndarray::array;
use neumann::{MatrixGame, Playable};

fn main() {
    let matrix_game = MatrixGame::from(array![[0, 0], [-1, 1]]);

    matrix_game.play()
}