Skip to content

Implementation of Games Theory algorithms in Julia

License

Notifications You must be signed in to change notification settings

KrainskiL/Nash.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

63 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.