line_graph#
- graph_tool.generation.line_graph(g)[source]#
Return the line graph of the given graph g.
Notes
Given an undirected graph
, its line graph is a graph such that:Each vertex of
represents an edge of ; andTwo vertices of
are adjacent if and only if their corresponding edges share a common endpoint (“are adjacent”) in .
For a directed graph, the second criterion becomes:
Two vertices representing directed edges from
to and from to in are connected by an edge from to in the line digraph when .
References
[line-wiki]Examples
>>> g = gt.collection.data["lesmis"] >>> lg, vmap = gt.line_graph(g) >>> pos = gt.graph_draw(lg, output="lesmis-lg.pdf")
Line graph of the coappearance of characters in Victor Hugo’s novel “Les Misérables”.#