diff options
author | Benji Dial <benji@benjidial.net> | 2023-05-30 21:39:37 -0400 |
---|---|---|
committer | Benji Dial <benji@benjidial.net> | 2023-05-30 21:39:37 -0400 |
commit | 6b2cbe6c00c1b008e3145c1adf6096640f4e7bbd (patch) | |
tree | 6c53b7bdc207f7acb024ccdcec64ca2c64211050 /score | |
parent | 82699138982bf177366c52757e888d7ca3f04b66 (diff) | |
download | lib94-6b2cbe6c00c1b008e3145c1adf6096640f4e7bbd.tar.gz |
template single_step and executors on whether to update address sets to improve performance in non-gui programs
Diffstat (limited to 'score')
-rw-r--r-- | score/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/score/main.cpp b/score/main.cpp index fa646d0..aae9ba2 100644 --- a/score/main.cpp +++ b/score/main.cpp @@ -85,7 +85,7 @@ int main(int argc, const char **argv) { for (unsigned step_number = 0; step_number < steps_until_tie; ++step_number) { - const lib94::warrior *w = lib94::single_step(); + const lib94::warrior *w = lib94::single_step<false>(); if (w == ws[0]) { ++w2_wins; |