There was an error while loading. Please reload this page.
1 parent ff7e73b commit 86cb476Copy full SHA for 86cb476
1 file changed
src/evaltune_main.cpp
@@ -97,7 +97,7 @@ int main() {
97
const size_t N = raw_lines.size();
98
99
positions.resize(N);
100
- results.resize(N, -1.0);
+ results.resize(N, -1.0);
101
102
advise_huge_pages(positions.data(), positions.capacity() * sizeof(Position));
103
advise_huge_pages(results.data(), results.capacity() * sizeof(f64));
@@ -153,7 +153,7 @@ int main() {
153
{
154
size_t write = 0;
155
for (size_t read = 0; read < N; ++read) {
156
- if (results[read] >= 0.0) {
+ if (results[read] >= 0.0) {
157
if (write != read) {
158
positions[write] = std::move(positions[read]);
159
results[write] = results[read];
0 commit comments