| 599 | } |
| 600 | |
| 601 | void HighsSimplexAnalysis::simplexTimerStop(const HighsInt simplex_clock, |
| 602 | const HighsInt thread_id) { |
| 603 | if (!analyse_simplex_time) return; |
| 604 | // assert(analyse_simplex_time); |
| 605 | thread_simplex_clocks[thread_id].timer_pointer_->stop( |
| 606 | thread_simplex_clocks[thread_id].clock_[simplex_clock]); |
| 607 | } |
| 608 | |
| 609 | bool HighsSimplexAnalysis::simplexTimerRunning(const HighsInt simplex_clock, |
| 610 | const HighsInt thread_id) const { |
no test coverage detected