| 83 | double Timer::ElapsedHours() const { return ElapsedMinutes() / 60; } |
| 84 | |
| 85 | void Timer::PrintSeconds() const { |
| 86 | LOG(INFO) << StringPrintf("Elapsed time: %.5f [seconds]", ElapsedSeconds()); |
| 87 | } |
| 88 | |
| 89 | void Timer::PrintMinutes() const { |
| 90 | LOG(INFO) << StringPrintf("Elapsed time: %.3f [minutes]", ElapsedMinutes()); |
no test coverage detected