Spaces:
Sleeping
Sleeping
File size: 418 Bytes
8787979 |
1 2 3 4 5 6 7 8 9 10 11 12 |
"""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
|