summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2019-06-28 23:12:42 +0200
committerJustin Worthe <justin@worthe-it.co.za>2019-06-28 23:12:42 +0200
commitd5070033892a531fab75ae1951deeb25c2d5f741 (patch)
tree9c850d04ac5dec7762e2e8df2c53112ef614ad40 /src
parent4c5331b9b5633fd500c79ada42fc08b3cb986631 (diff)
Bumped benchmarking json
Diffstat (limited to 'src')
-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)