MCPcopy Create free account
hub / github.com/Gecode/gecode / kill_brancher

Method kill_brancher

gecode/kernel/core.cpp:670–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

668 }
669
670 void
671 Space::kill_brancher(unsigned int id) {
672 if (failed())
673 return;
674 for (Brancher* b = Brancher::cast(bl.next());
675 b != Brancher::cast(&bl); b = Brancher::cast(b->next()))
676 if (b->id() == id) {
677 kill(*b);
678 return;
679 }
680 }
681
682
683 /*

Callers

nothing calls this directly

Calls 2

nextMethod · 0.45
idMethod · 0.45

Tested by

no test coverage detected