pygambit.nash.LcpStrategyResult#

class pygambit.nash.LcpStrategyResult(*, game: Game, rational: bool, use_strategic: bool, stop_after: int | None, max_depth: int | None, equilibria: list[MixedStrategyProfile], success: bool)#

The result of lcp_solve when solving on the strategic representation.

stop_after#

The maximum number of equilibria which were to be computed, if specified.

Type:

int, optional

max_depth#

The maximum depth of recursion in the search, if specified.

Type:

int, optional

equilibria#

The equilibria found.

Type:

MixedStrategyEquilibriumSet

success#

False if max_depth caused the search to be pruned before it could establish it had found all accessible equilibria; True otherwise.

Type:

bool

Methods

Attributes