summaryrefslogtreecommitdiff
path: root/src/strategy/mcts.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategy/mcts.rs')
-rw-r--r--src/strategy/mcts.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/strategy/mcts.rs b/src/strategy/mcts.rs
index 26edf16..e393685 100644
--- a/src/strategy/mcts.rs
+++ b/src/strategy/mcts.rs
@@ -229,6 +229,8 @@ fn update(node: &mut Node, commands: [Command; 2], score: Score) {
node.score_sum += score;
}
+// TODO: Move into game.rs
+// TODO: Include snowball commands
fn valid_moves(state: &GameBoard, player_index: usize) -> Vec<Command> {
state
.valid_shoot_commands(player_index)