lcipolina commited on
Commit
e55fbd6
·
verified ·
1 Parent(s): f402c20

Upload tic_tac_toe_simulator.py

Browse files
Files changed (1) hide show
  1. simulators/tic_tac_toe_simulator.py +11 -0
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