LLM_OpenSpiel_Arena / simulators /connect_four_simulator.py
lcipolina's picture
Upload 7 files
8787979 verified
raw
history blame contribute delete
357 Bytes
"""Simulator for Connect Four.
This module implements the ConnectFourSimulator class, which simulates games of
Connect Four using the OpenSpiel framework.
"""
from simulators.base_simulator import GameSimulator
class ConnectFourSimulator(GameSimulator):
"""Simulator for Connect Four."""
pass # All functionality is inherited from GameSimulator