Skip to content

Commit 86cb476

Browse files
Format
Bench: 15668761
1 parent ff7e73b commit 86cb476

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/evaltune_main.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ int main() {
9797
const size_t N = raw_lines.size();
9898

9999
positions.resize(N);
100-
results.resize(N, -1.0);
100+
results.resize(N, -1.0);
101101

102102
advise_huge_pages(positions.data(), positions.capacity() * sizeof(Position));
103103
advise_huge_pages(results.data(), results.capacity() * sizeof(f64));
@@ -153,7 +153,7 @@ int main() {
153153
{
154154
size_t write = 0;
155155
for (size_t read = 0; read < N; ++read) {
156-
if (results[read] >= 0.0) {
156+
if (results[read] >= 0.0) {
157157
if (write != read) {
158158
positions[write] = std::move(positions[read]);
159159
results[write] = results[read];

0 commit comments

Comments
 (0)