| 2146 | } |
| 2147 | |
| 2148 | bool HighsSolution::hasUndefined() const { |
| 2149 | for (double value : this->col_value) |
| 2150 | if (value == kHighsUndefined) return true; |
| 2151 | return false; |
| 2152 | } |
| 2153 | |
| 2154 | void HighsSolution::invalidate() { |
| 2155 | this->value_valid = false; |
no outgoing calls
no test coverage detected