aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
Diffstat (limited to 'checks')
-rw-r--r--checks/timer.cpp17
1 files changed, 4 insertions, 13 deletions
diff --git a/checks/timer.cpp b/checks/timer.cpp
index a5225f23b..8ebbcb4ce 100644
--- a/checks/timer.cpp
+++ b/checks/timer.cpp
@@ -37,19 +37,10 @@ std::ostream& operator<<(std::ostream& out, Timer& timer)
out << events_per_second << " " << timer.get_name() << " per second; ";
- if(timer.seconds_per_event() < 1)
- out << std::setprecision(2) << std::fixed
- << timer.ms_per_event() << " ms/" << timer.get_name();
- else
- out << std::setprecision(4) << std::fixed
- << timer.seconds_per_event() << " s/" << timer.get_name();
-
- if(timer.seconds() > 3)
- out << " (" << timer.events() << " ops in "
- << timer.milliseconds() << " ms)";
- else
- out << " (" << timer.events() << " ops in "
- << timer.seconds() << " s)";
+ out << std::setprecision(2) << std::fixed
+ << timer.ms_per_event() << " ms/" << timer.get_name()
+ << " (" << timer.events() << " ops in "
+ << timer.milliseconds() << " ms)";
return out;
}