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

Method unlink

highs/mip/HighsNodeQueue.cpp:207–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207void HighsNodeQueue::unlink(int64_t node) {
208 if (nodes[node].estimate == kHighsInf) {
209 unlink_suboptimal(node);
210 } else {
211 unlink_estim(node);
212 unlink_lower(node);
213 }
214 unlink_domchgs(node);
215 freeslots.push(node);
216}
217
218void HighsNodeQueue::setNumCol(HighsInt numCol) {
219 if (this->numCol == numCol) return;

Callers 3

unlink_estimMethod · 0.45
unlink_lowerMethod · 0.45
unlink_suboptimalMethod · 0.45

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected