| 2999 | } |
| 3000 | |
| 3001 | HighsModelStatus HighsTerminator::terminationStatus() const { |
| 3002 | assert(this->record); |
| 3003 | for (HighsInt instance = 0; instance < this->num_instance; instance++) { |
| 3004 | if (this->record[instance] != HighsModelStatus::kNotset) |
| 3005 | return this->record[instance]; |
| 3006 | } |
| 3007 | return HighsModelStatus::kNotset; |
| 3008 | } |
| 3009 | |
| 3010 | void HighsTerminator::report(const HighsLogOptions log_options) const { |
| 3011 | highsLogUser(log_options, HighsLogType::kInfo, "\nTerminator: "); |
no outgoing calls
no test coverage detected