summaryrefslogtreecommitdiff
path: root/src/strategy.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategy.rs')
-rw-r--r--src/strategy.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/strategy.rs b/src/strategy.rs
index e2bf71d..771dccf 100644
--- a/src/strategy.rs
+++ b/src/strategy.rs
@@ -130,6 +130,7 @@ impl AddAssign<Score> for ScoreSum {
}
}
+// TODO: Look at transforming this into more of a minimax with AB pruning approach?
fn mcts(node: &mut Node) -> Score {
if node.state.outcome != SimulationOutcome::Continue {
score(&node.state)