Spaces:
Sleeping
Sleeping
Upload tic_tac_toe_simulator.py
Browse files
simulators/tic_tac_toe_simulator.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""Simulator for Tic-Tac-Toe.
|
2 |
+
|
3 |
+
This module implements the TicTacToeSimulator class, which simulates games of
|
4 |
+
Tic-Tac-Toe using the OpenSpiel framework.
|
5 |
+
"""
|
6 |
+
|
7 |
+
from simulators.base_simulator import GameSimulator
|
8 |
+
|
9 |
+
class TicTacToeSimulator(GameSimulator):
|
10 |
+
"""Simulator for Tic-Tac-Toe."""
|
11 |
+
pass # All functionality is inherited from GameSimulator
|