Skip to content

Commit

Permalink
Test fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasmarsh committed Feb 25, 2024
1 parent e50aaf1 commit 7ed6e37
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/games/gonnect.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ mod tests {
SearchConfig::default()
.expand_threshold(1)
.q_init(crate::strategies::mcts::node::UnvisitedValueEstimate::Draw)
.max_iterations(50000),
.max_iterations(500),
);
_ = search.choose_action(&State::default());
render::render(&search);
Expand Down
2 changes: 1 addition & 1 deletion src/games/shibumi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ impl Shibumi {
}

pub fn print_top_down_view(&self) {
todo!()
// todo!()
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/games/ttt_traffic_lights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ mod tests {
SearchConfig::default()
.expand_threshold(0)
.q_init(crate::strategies::mcts::node::UnvisitedValueEstimate::Draw)
.max_iterations(1_000_000),
.max_iterations(500),
);
_ = search.choose_action(&Position::default());
render::render(&search);
Expand Down

0 comments on commit 7ed6e37

Please sign in to comment.