Spaces:
Sleeping
Sleeping
"""Simulator for Matching Pennies (3-player). | |
This module implements the MatchingPenniesSimulator class, which simulates games of | |
Matching Pennies with three players using the OpenSpiel framework. | |
""" | |
from simulators.base_simulator import GameSimulator | |
class MatchingPenniesSimulator(GameSimulator): | |
"""Simulator for Matching Pennies (3-player).""" | |
pass # All functionality is inherited from GameSimulator | |