| 217 | } |
| 218 | |
| 219 | void BaseMachine::start(int n) |
| 220 | { |
| 221 | cout << "Starting timer " << n << " at " << timer[n].elapsed() |
| 222 | << " (" << timer[n] << ")" |
| 223 | << " after " << timer[n].idle() << endl; |
| 224 | timer[n].start(total_stats()); |
| 225 | } |
| 226 | |
| 227 | void BaseMachine::stop(int n) |
| 228 | { |
no test coverage detected