\brief get the average speed \return the average speed
| 63 | /// \brief get the average speed |
| 64 | /// \return the average speed |
| 65 | float get_average_speed(){ |
| 66 | time_utils::time_with_unit time_in_second = time_utils::cast_to_s(this->total_time); |
| 67 | return this->counter / time_in_second.first; |
| 68 | } |
| 69 | |
| 70 | /// \brief get the counter |
| 71 | /// \return the counter |
no test coverage detected