summaryrefslogtreecommitdiff
path: root/src/strategy
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-08-10 16:28:56 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-08-10 16:28:56 +0200
commit1d54d0825505b670ee8cc5f370088ae1a6ed3b5f (patch)
treeb889f4ef2a9cf1c9c9ae80ba40f9069cb1799faa /src/strategy
parent3bfb933d54b09ca57ef9b6a7fb05aca64ba8b76e (diff)
TODO Pruning
Diffstat (limited to 'src/strategy')
-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.,