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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strategy/minimax.rs b/src/strategy/minimax.rs
index 80d8246..699a4f6 100644
--- a/src/strategy/minimax.rs
+++ b/src/strategy/minimax.rs
@@ -25,7 +25,7 @@ pub fn choose_move(
.map(|(_k, n)| n)
.find(|_n| false) // TODO: Identify the last opponent move to use this cache
.unwrap_or_else(|| {
- eprintln!("Previous round did not appear in the cache");
+ //eprintln!("Previous round did not appear in the cache");
Node {
score_sum: ScoreSum::new(),
player_score_sums: [HashMap::new(), HashMap::new()],
@@ -39,7 +39,7 @@ pub fn choose_move(
let _ = expand_tree(&mut root_node, &state);
}
- eprintln!("Number of simulations: {}", root_node.score_sum.visit_count);
+ //eprintln!("Number of simulations: {}", root_node.score_sum.visit_count);
for (command, score_sum) in &root_node.player_score_sums[0] {
eprintln!(
"{} = {} ({} visits)",