Skip to content

Commit

Permalink
reduce precision to match Lab.
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonDold committed Nov 24, 2023
1 parent 115ffee commit e2157d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search/utils/timer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ Duration Timer::reset() {
}

ostream &operator<<(ostream &os, const Timer &timer) {
os << fixed << setprecision(6) << timer();
os << fixed << setprecision(2) << timer();
return os;
}

Expand Down

0 comments on commit e2157d9

Please sign in to comment.