Spaces:
Sleeping
Sleeping
"""Simulator for Matrix Games. | |
This module implements the MatrixGameSimulator class, which handles various | |
matrix games like Rock-Paper-Scissors and Prisoner's Dilemma using the OpenSpiel | |
framework. | |
""" | |
from simulators.base_simulator import GameSimulator | |
class MatrixGameSimulator(GameSimulator): | |
"""Simulator for Matrix Games.""" | |
pass # All functionality is inherited from GameSimulator | |