summaryrefslogtreecommitdiff
path: root/src/strategy
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategy')
-rw-r--r--src/strategy/monte_carlo.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/strategy/monte_carlo.rs b/src/strategy/monte_carlo.rs
index 7baba17..8627a00 100644
--- a/src/strategy/monte_carlo.rs
+++ b/src/strategy/monte_carlo.rs
@@ -87,9 +87,9 @@ fn debug_print_choices<F: FnMut(&CommandScore) -> Option<(Point, i32)>>(label: &
}
#[cfg(not(feature = "discard-poor-performers"))]
-fn simulate_options_to_timeout(command_scores: &'a mut Vec<CommandScore>, settings: &GameSettings, state: &BitwiseGameState, start_time: PreciseTime, max_time: Duration) -> Option<&'a CommandScore> {
+fn simulate_options_to_timeout<'a>(command_scores: &'a mut Vec<CommandScore>, state: &BitwiseGameState, start_time: PreciseTime, max_time: Duration) -> Option<&'a CommandScore> {
loop {
- simulate_all_options_once(command_scores, settings, state);
+ simulate_all_options_once(command_scores, state);
if start_time.to(PreciseTime::now()) > max_time {
break;
}