| 81 | double Timer::ElapsedMinutes() const { return ElapsedSeconds() / 60; } |
| 82 | |
| 83 | double Timer::ElapsedHours() const { return ElapsedMinutes() / 60; } |
| 84 | |
| 85 | void Timer::PrintSeconds() const { |
| 86 | LOG(INFO) << StringPrintf("Elapsed time: %.5f [seconds]", ElapsedSeconds()); |