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