| 402 | } |
| 403 | |
| 404 | double HighsNodeQueue::getBestLowerBound() const { |
| 405 | double lb = lowerMin == -1 ? kHighsInf : nodes[lowerMin].lower_bound; |
| 406 | |
| 407 | if (suboptimalMin == -1) return lb; |
| 408 | |
| 409 | return std::min(nodes[suboptimalMin].lower_bound, lb); |
| 410 | } |
| 411 | |
| 412 | HighsInt HighsNodeQueue::getBestBoundDomchgStackSize() const { |
| 413 | HighsInt domchgStackSize = lowerMin == -1 |