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