Commit 19eb9aab authored by nd-02110114's avatar nd-02110114
Browse files

🐛 fix error

parent a576ec80
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -9,6 +9,7 @@ class TicTacToeEnvironment(deepchem.rl.Environment):
    Play tictactoe against a randomly acting opponent
    """
  X = np.array([1.0, 0.0])
  O = np.array([0.0, 1.0])  # noqa: E741
  EMPTY = np.array([0.0, 0.0])

  ILLEGAL_MOVE_PENALTY = -3.0