MCPcopy
hub / github.com/networkx/networkx / _unblock

Function _unblock

networkx/algorithms/cycles.py:819–824  ·  view source on GitHub ↗

Recursively unblock and remove nodes from B[thisnode].

(thisnode)

Source from the content-addressed store, hash-verified

817
818 # Jon Olav Vik, 2010-08-09
819 def _unblock(thisnode):
820 """Recursively unblock and remove nodes from B[thisnode]."""
821 if blocked[thisnode]:
822 blocked[thisnode] = False
823 while B[thisnode]:
824 _unblock(B[thisnode].pop())
825
826 def circuit(thisnode, startnode, component):
827 closed = False # set to True if elementary path is closed

Callers 1

circuitFunction · 0.85

Calls 1

popMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…