| 632 | } |
| 633 | |
| 634 | HighsTimerClock* HighsSimplexAnalysis::getThreadFactorTimerClockPointer() { |
| 635 | HighsTimerClock* factor_timer_clock_pointer = NULL; |
| 636 | if (analyse_factor_time) { |
| 637 | HighsInt thread_id = highs::parallel::thread_num(); |
| 638 | factor_timer_clock_pointer = &thread_factor_clocks[thread_id]; |
| 639 | } |
| 640 | return factor_timer_clock_pointer; |
| 641 | } |
| 642 | |
| 643 | void HighsSimplexAnalysis::iterationRecord() { |
| 644 | assert(analyse_simplex_summary_data); |
no test coverage detected