MCPcopy Create free account
hub / github.com/OpenMS/OpenMS / markUnreachable

Method markUnreachable

src/openms_gui/source/VISUAL/TOPPASVertex.cpp:620–631  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

618 }
619
620 void TOPPASVertex::markUnreachable()
621 {
622 reachable_ = false;
623 for (ConstEdgeIterator it = outEdgesBegin(); it != outEdgesEnd(); ++it)
624 {
625 TOPPASVertex* tv = (*it)->getTargetVertex();
626 if (tv->reachable_)
627 {
628 tv->markUnreachable();
629 }
630 }
631 }
632
633 bool TOPPASVertex::isReachable() const
634 {

Callers 1

foreachFunction · 0.45

Calls 1

getTargetVertexMethod · 0.80

Tested by

no test coverage detected