Zero-Sum Games

Game Problem

Game solver of the game matrix designed for the row player

OperationsResearchModels.solveMethod
solve(p::GameProblem; verbose::Bool = false)::Vector{GameResult}

Solves a zero-sum game using the simplex method.

Arguments

  • p::GameProblem: The problem instance containing the decision matrix.
  • verbose: If true, prints the model information.

Returns

  • An array of GameResult objects containing the probabilities and value of the game.
source

GameResult

OperationsResearchModels.Game.GameResultType
GameResult

Description

A structure to hold the result of a game.

Fields

  • probabilities: Probabilities of the strategies
  • value: Value of the game
  • model::JuMP.Model: The JuMP model used to solve the game.
source