LLM_OpenSpiel_Arena / simulators /tic_tac_toe_simulator.py
lcipolina's picture
Upload tic_tac_toe_simulator.py
e55fbd6 verified
raw
history blame contribute delete
350 Bytes
"""Simulator for Tic-Tac-Toe.
This module implements the TicTacToeSimulator class, which simulates games of
Tic-Tac-Toe using the OpenSpiel framework.
"""
from simulators.base_simulator import GameSimulator
class TicTacToeSimulator(GameSimulator):
"""Simulator for Tic-Tac-Toe."""
pass # All functionality is inherited from GameSimulator