MCPcopy Create free account
hub / github.com/ERGO-Code/HiGHS / getBestLowerBound

Method getBestLowerBound

highs/mip/HighsNodeQueue.cpp:404–410  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

402}
403
404double 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
412HighsInt HighsNodeQueue::getBestBoundDomchgStackSize() const {
413 HighsInt domchgStackSize = lowerMin == -1

Callers 1

runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected