Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 1.11 KB

README.md

File metadata and controls

36 lines (24 loc) · 1.11 KB

Nash.jl

Implementation of Games Theory algorithms in Julia

Documentation

Build status

Build Status codecov

Instalation instructions

Add Nash by running following code in Julia REPL

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

Walkthrough on available functions is available in 📑 Tutorial

Link to API Reference

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]

Please check /examples/example.jl for more.