Game Generators
Exported
Games.covariance_game
— Method.covariance_game([rng=GLOBAL_RNG], nums_actions, rho)
Return a random N-player NormalFormGame instance with N>=2 where the payoff profiles are drawn independently from the standard multi-normal with the covariance of any pair of payoffs equal to rho
, as studied in Rinott and Scarsini (2000).
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.nums_actions::NTuple{N,Int}
: Tuple of the numbers of actions, one for each player.rho::Real
: Covariance of a pair of payoff values. Must be in [-1/(N-1), 1], where N is the number of players.
Returns
::NormalFormGame
: The generated random N-player NormalFormGame.
References
- Y. Rinott and M. Scarsini, "On the Number of Pure Strategy Nash Equilibria in Random Games," Games and Economic Behavior (2000), 274-293.
Games.random_game
— Method.random_game([rng=GLOBAL_RNG], nums_actions)
Return a random N-player NormalFormGame instance where the payoffs are drawn independently from the uniform distribution on [0, 1).
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.nums_actions::NTuple{N,Int}
: Tuple of the numbers of actions, one for each player.
Returns
::NormalFormGame
: The generated random N-player NormalFormGame.
Games.random_mixed_actions
— Method.random_mixed_actions([rng=GLOBAL_RNG], nums_actions)
Return a tuple of random mixed actions (vectors of floats).
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.nums_actions::NTuple{N,Int}
: N-tuple of the numbers of actions, one for each player.
Returns
::NTuple{N,Vector{Float64}}
: N-tuple of random mixed actions.
Games.random_pure_actions
— Method.random_pure_actions([rng=GLOBAL_RNG], nums_actions)
Return a tuple of random pure actions (integers).
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.nums_actions::NTuple{N,Int}
: N-tuple of the numbers of actions, one for each player.
Returns
::NTuple{N,Int}
: N-tuple of random pure actions.
Games.Generators.blotto_game
— Function.blotto_game([rng=GLOBAL_RNG], h, t, rho[, mu=0])
Return a NormalFormGame instance of a 2-player non-zero sum Colonel Blotto game (Hortala-Vallve and Llorente-Saguer, 2012), where the players have an equal number t
of troops to assign to h
hills (so that the number of actions for each player is equal to (t+h-1) choose (h-1) = (T+h-1)!/(T!*(h-1)!)). Each player has a value for each hill that he receives if he assigns strictly more troops to the hill than his opponent (ties are broken uniformly at random), where the values are drawn from a multivariate normal distribution with covariance rho
. Each player’s payoff is the sum of the values of the hills won by that player.
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.h::Integer
: Number of hills.t::Integer
: Number of troops.rho::Real
: Covariance of the players' values of each hill. Must be in [-1, 1].mu::Real=0
: Mean of the players' values of each hill.
Returns
g::NormalFormGame
Examples
julia> rng = MersenneTwister(1234);
julia> g = blotto_game(rng, 2, 3, 0.5)
4×4 NormalFormGame{2,Float64}
julia> g.players[1]
4×4 Player{2,Float64}:
0.186434 -0.494479 -0.494479 -0.494479
0.867347 0.186434 -0.494479 -0.494479
0.867347 0.867347 0.186434 -0.494479
0.867347 0.867347 0.867347 0.186434
julia> g.players[2]
4×4 Player{2,Float64}:
-0.688223 -1.02919 -1.02919 -1.02919
-0.347259 -0.688223 -1.02919 -1.02919
-0.347259 -0.347259 -0.688223 -1.02919
-0.347259 -0.347259 -0.347259 -0.688223
Games.Generators.ranking_game
— Function.ranking_game([rng=GLOBAL_RNG], n[, steps=10])
Return a NormalFormGame instance of (the 2-player version of) the "ranking game" studied by Goldberg et al. (2013), where each player chooses an effort level associated with a score and a cost which are both increasing functions with randomly generated step sizes. The player with the higher score wins the first prize, whose value is 1, and the other player obtains the "second prize" of value 0; in the case of a tie, the first prize is split and each player receives a value of 0.5. The payoff of a player is given by the value of the prize minus the cost of the effort.
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.n::Integer
: Number of actions, i.e, number of possible effort levels.steps::Integer=10
: Parameter determining the upper bound for the size of the random steps for the scores and costs for each player: The step sizes for the scores are drawn from1
, ...,steps
, while those for the costs are multiples of1/(n*steps)
, where the cost of effort level1
is 0, and the maximum possible cost of effort leveln
is less than or equal to 1.
Returns
g::NormalFormGame
Examples
julia> rng = MersenneTwister(1234);
julia> g = ranking_game(rng, 5)
5×5 NormalFormGame{2,Float64}
julia> g.players[1]
5×5 Player{2,Float64}:
0.5 0.0 0.0 0.0 0.0
0.84 -0.16 -0.16 -0.16 -0.16
0.8 0.8 -0.2 -0.2 -0.2
0.78 0.78 0.78 -0.22 -0.22
0.6 0.6 0.6 0.6 -0.4
julia> g.players[2]
5×5 Player{2,Float64}:
0.5 0.0 0.0 0.0 0.0
0.84 0.84 -0.16 -0.16 -0.16
0.7 0.7 0.7 -0.3 -0.3
0.5 0.5 0.5 0.5 -0.5
0.36 0.36 0.36 0.36 0.36
Games.Generators.sgc_game
— Method.sgc_game(k)
Return a NormalFormGame instance of the 2-player game introduced by Sandholm, Gilpin, and Conitzer (2005), which has a unique Nash equilibrium, where each player plays half of the actions with positive probabilities. Payoffs are normalized so that the minimum and the maximum payoffs are 0 and 1, respectively.
Arguments
k::Integer
: Positive integer determining the number of actions. The returned game will have4*k-1
actions for each player.
Returns
g::NormalFormGame
Examples
julia> g = sgc_game(2)
7×7 NormalFormGame{2,Float64}
julia> g.players[1]
7×7 Player{2,Float64}:
0.75 0.5 1.0 0.5 0.5 0.5 0.5
1.0 0.75 0.5 0.5 0.5 0.5 0.5
0.5 1.0 0.75 0.5 0.5 0.5 0.5
0.0 0.0 0.0 0.75 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.75 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.75 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.75
julia> g.players[2]
7×7 Player{2,Float64}:
0.75 0.5 1.0 0.5 0.5 0.5 0.5
1.0 0.75 0.5 0.5 0.5 0.5 0.5
0.5 1.0 0.75 0.5 0.5 0.5 0.5
0.0 0.0 0.0 0.0 0.75 0.0 0.0
0.0 0.0 0.0 0.75 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.75
0.0 0.0 0.0 0.0 0.0 0.75 0.0
Games.Generators.tournament_game
— Method.tournament_game(n, k; seed=-1)
Return a NormalFormGame instance of the 2-player win-lose game, whose payoffs are either 0 or 1, introduced by Anbalagan et al. (2013). Player 1 has n actions, which constitute the set of nodes {1, ..., n}, while player 2 has n choose k actions, each corresponding to a subset of k elements of the set of n nodes. Given a randomly generated tournament graph on the n nodes, the payoff for player 1 is 1 if, in the tournament, the node chosen by player 1 dominates all the nodes in the k-subset chosen by player 2. The payoff for player 2 is 1 if player 2's k-subset contains player 1's chosen node.
Notes
The actions of player 2 are ordered according to the combinatorial number system, which is different from the order used in the original library in C.
Arguments
n::Integer
: Number of nodes in the tournament graph.k::Integer
: Size of subsets of nodes in the tournament graph.seed::Integer=-1
: Seed for random number generator. If seed is negative, thenGLOBAL_RNG
is used.
Returns
g::NormalFormGame
Examples
julia> seed = 1234;
julia> g = tournament_game(5, 2; seed=seed)
5×10 NormalFormGame{2,Float64}
julia> g.players[1]
5×10 Player{2,Float64}:
0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0
0.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
julia> g.players[2]
10×5 Player{2,Float64}:
1.0 1.0 0.0 0.0 0.0
1.0 0.0 1.0 0.0 0.0
0.0 1.0 1.0 0.0 0.0
1.0 0.0 0.0 1.0 0.0
0.0 1.0 0.0 1.0 0.0
0.0 0.0 1.0 1.0 0.0
1.0 0.0 0.0 0.0 1.0
0.0 1.0 0.0 0.0 1.0
0.0 0.0 1.0 0.0 1.0
0.0 0.0 0.0 1.0 1.0
Games.Generators.unit_vector_game
— Method.unit_vector_game([rng=GLOBAL_RNG], n; avoid_pure_nash=false)
Return a NormalFormGame instance of the 2-player game "unit vector game" (Savani and von Stengel, 2016). Payoffs for player 2 are chosen randomly from the [0, 1) range. For player 1, each column contains exactly one 1 payoff and the rest is
Arguments
rng::AbstractRNG=GLOBAL_RNG
: Random number generator used.n::Integer
: Number of actions.avoid_pure_nash::Bool=false
: If true, player 1's payoffs will be placed in order to avoid pure Nash equilibria. (If necessary, the payoffs for player 2 are redrawn so as not to have a dominant action.)
Returns
g::NormalFormGame
Examples
julia> rng = MersenneTwister(1234);
julia> g = unit_vector_game(rng, 5)
5×5 NormalFormGame{2,Float64}
julia> g.players[1]
5×5 Player{2,Float64}:
0.0 0.0 0.0 0.0 0.0
1.0 1.0 0.0 0.0 0.0
0.0 0.0 0.0 0.0 1.0
0.0 0.0 0.0 0.0 0.0
0.0 0.0 1.0 1.0 0.0
julia> g.players[2]
5×5 Player{2,Float64}:
0.590845 0.854147 0.648882 0.112486 0.950498
0.766797 0.200586 0.0109059 0.276021 0.96467
0.566237 0.298614 0.066423 0.651664 0.945775
0.460085 0.246837 0.956753 0.0566425 0.789904
0.794026 0.579672 0.646691 0.842714 0.82116
julia> pure_nash(g)
1-element Array{Tuple{Int64,Int64},1}:
(2, 1)
With avoid_pure_nash=true
:
julia> rng = MersenneTwister(1234);
julia> g = unit_vector_game(rng, 5; avoid_pure_nash=true)
5×5 NormalFormGame{2,Float64}
julia> g.players[1]
5×5 Player{2,Float64}:
0.0 0.0 0.0 1.0 0.0
0.0 0.0 0.0 0.0 0.0
0.0 1.0 1.0 0.0 1.0
0.0 0.0 0.0 0.0 0.0
1.0 0.0 0.0 0.0 0.0
julia> g.players[2]
5×5 Player{2,Float64}:
0.590845 0.854147 0.648882 0.112486 0.950498
0.766797 0.200586 0.0109059 0.276021 0.96467
0.566237 0.298614 0.066423 0.651664 0.945775
0.460085 0.246837 0.956753 0.0566425 0.789904
0.794026 0.579672 0.646691 0.842714 0.82116
julia> pure_nash(g)
0-element Array{Tuple{Int64,Int64},1}