Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 859 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 859 Bytes

Nash.jl

Implementation of Games Theory algorithms in Julia

Documentation

Build status

Build Status codecov

Instalation instructions

Add Nash using Pkg

] add https://github.com/KrainskiL/Nash.jl

Example usage

using Nash
using Distributions
random_2players_game(Normal(0,2),2,3)
> Dict{String,Array{Float64,2}} with 2 entries:
>  "player2" => [2.80393 -1.9793 -1.52571; -1.50642 -0.0574021 1.0391]
>  "player1" => [2.2755 -0.224079 0.0240092; 0.466656 -2.85657 2.40831]