From 43dc5237baf39731e91064d026c3bfb3268f712e Mon Sep 17 00:00:00 2001 From: Michael Peters Date: Thu, 1 Jun 2023 19:57:35 -0700 Subject: [PATCH] comment about board parity --- tictactoe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tictactoe.py b/tictactoe.py index 984bf76..8538aa0 100644 --- a/tictactoe.py +++ b/tictactoe.py @@ -131,5 +131,6 @@ def get_score(state: GameState, target: Player) -> float: if __name__ == "__main__": # TODO: "get best move" + # TODO: rotational / reflectional board parity (for less total nodes) print(f"{START=}, {get_score(START, 'X')=}") print(f"{total_nodes=}") # 5478