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.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/strategy/mcts.rs b/src/strategy/mcts.rs
index dc6a5a3..c122fa1 100644
--- a/src/strategy/mcts.rs
+++ b/src/strategy/mcts.rs
@@ -188,7 +188,6 @@ fn best_player_move(node: &Node) -> Command {
}
fn score(state: &GameBoard) -> Score {
- // TODO: Try adding new features here, like max worm health, weighted in some way
Score {
val: match state.outcome {
SimulationOutcome::PlayerWon(0) => 3000.,