summaryrefslogtreecommitdiff
path: root/src/strategy/minimax.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategy/minimax.rs')
-rw-r--r--src/strategy/minimax.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/strategy/minimax.rs b/src/strategy/minimax.rs
index f87d850..8a45750 100644
--- a/src/strategy/minimax.rs
+++ b/src/strategy/minimax.rs
@@ -229,7 +229,7 @@ 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
- // TODO: Distance to dirt heatmap
+ // TODO: Distance to dirt heatmap?
Score {
val: match state.outcome {
SimulationOutcome::PlayerWon(0) => 2000.,