summaryrefslogtreecommitdiff
path: root/src/bin/perf-test.rs
diff options
context:
space:
mode:
authorJustin Worthe <justin@worthe-it.co.za>2018-08-11 17:10:28 +0200
committerJustin Worthe <justin@worthe-it.co.za>2018-08-11 17:10:28 +0200
commit8a562b9f8cd37fe23bc61974ee2124d77bbd9885 (patch)
treee28841ad8f338a59f53990058c7ca32e635c8314 /src/bin/perf-test.rs
parent856a6a17aa927e95e33cffcbd178efe86ce14262 (diff)
Clippy-suggested edits
Diffstat (limited to 'src/bin/perf-test.rs')
-rw-r--r--src/bin/perf-test.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/perf-test.rs b/src/bin/perf-test.rs
index 415cd61..da7a0a5 100644
--- a/src/bin/perf-test.rs
+++ b/src/bin/perf-test.rs
@@ -24,5 +24,5 @@ fn bitwise() {
}
};
let max_time = Duration::milliseconds(MAX_TIME_MILLIS);
- strategy::monte_carlo::choose_move(&state, &start_time, max_time);
+ strategy::monte_carlo::choose_move(&state, start_time, max_time);
}