| 5166 | } |
| 5167 | |
| 5168 | void Highs::clearProfiling() { |
| 5169 | if (!this->profiling_) return; |
| 5170 | this->profiling_->clear(); |
| 5171 | this->profiling_ = nullptr; |
| 5172 | } |
| 5173 | |
| 5174 | void Highs::setProfiling(HighsProfiling* profiling) { |
| 5175 | assert(profiling); |
no test coverage detected