From 6e061171da5f8efeafb7a86bd9eb3fd404cdcd53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoffer=20M=C3=BCller=20Madsen?= Date: Tue, 22 May 2018 15:38:00 +0200 Subject: [PATCH] rm TODO --- board.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/board.py b/board.py index 655dfe5..c341a7a 100644 --- a/board.py +++ b/board.py @@ -15,9 +15,7 @@ class Board: def idxs_with_checkers_of_player(board, player): return quack.idxs_with_checkers_of_player(board, player) - - # TODO: Write a test for this - # TODO: Make sure that the bars fit, 0 represents the -1 player and 25 represents the 1 player + # index 26 is player 1 home, index 27 is player -1 home @staticmethod def board_features_to_pubeval(board, player): @@ -249,9 +247,6 @@ class Board: # Find all points with checkers on them belonging to the player # Iterate through each index and check if it's a possible move given the roll - # TODO: make sure that it is not possible to do nothing on first part of - # turn and then do something with the second die - def calc_moves(board, face_value): if face_value == 0: return [board]