| 311 | } |
| 312 | |
| 313 | const std::string highsTimeToString(const double time) { |
| 314 | return |
| 315 | #ifndef NDEBUG |
| 316 | std::to_string(time); |
| 317 | #else |
| 318 | std::to_string(static_cast<int>(time)); |
| 319 | #endif |
| 320 | } |
| 321 | |
| 322 | const std::string highsTimeSecondToString(const double time) { |
| 323 | return highsTimeToString(time) + "s"; |
no test coverage detected