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.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/strategy/minimax.rs b/src/strategy/minimax.rs
index 11e19a1..80d8246 100644
--- a/src/strategy/minimax.rs
+++ b/src/strategy/minimax.rs
@@ -229,6 +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
Score {
val: match state.outcome {
SimulationOutcome::PlayerWon(0) => 2000.,