networkx.algorithms.dag.transitive_closure¶
-
transitive_closure
(G)[source]¶ Returns transitive closure of a directed graph
The transitive closure of G = (V,E) is a graph G+ = (V,E+) such that for all v,w in V there is an edge (v,w) in E+ if and only if there is a non-null path from v to w in G.
Parameters: G (NetworkX DiGraph) – A directed graph Returns: The transitive closure of G
Return type: NetworkX DiGraph Raises: NetworkXNotImplemented
– IfG
is not directedReferences
[1] http://www.ics.uci.edu/~eppstein/PADS/PartialOrder.py