Skip to content

Commit

Permalink
Update heuristic_payoff_table.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lanctot authored Jul 15, 2024
1 parent 76a3c79 commit 859f179
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions open_spiel/python/egt/heuristic_payoff_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,15 +262,18 @@ class _PayoffTableInterface(metaclass=abc.ABCMeta):
def __call__(self):
"""Returns a view of the table as a np.array."""

@abc.abstractproperty
@property
@abc.abstractmethod
def num_strategies(self):
pass

@abc.abstractproperty
@property
@abc.abstractmethod
def num_players(self):
pass

@abc.abstractproperty
@property
@abc.abstractmethod
def num_rows(self):
pass

Expand Down

0 comments on commit 859f179

Please sign in to comment.