| 225 | } |
| 226 | |
| 227 | void BaseMachine::stop(int n) |
| 228 | { |
| 229 | timer[n].stop(total_stats()); |
| 230 | cout << "Stopped timer " << n << " at " << timer[n].elapsed() << " (" |
| 231 | << timer[n] << ")" << endl; |
| 232 | } |
| 233 | |
| 234 | void BaseMachine::print_timers() |
| 235 | { |
no test coverage detected