| Trees | Index | Help |
|---|
| Package libconfix :: Package core :: Package digraph :: Module algorithm |
|
| Function Summary | |
|---|---|
Combine nodes and edges of all graphs in digraphs and return the resulting graph. | |
nearest_property(digraph,
entrypoint,
property)
| |
From digraph, select all nodes that can be reached from one of the entrypoints, excluding the entrypoints. | |
From digraph, select all nodes that can be reached from one of the entrypoints, including the entrypoints. | |
reached_from(digraph,
entrypoints)
| |
From edges, select those whose ends are members of nodes (and return them). | |
From digraph, select nodes and remaining edges to form a new digraph. | |
Subtract nodes from digraph, together with the affected edges. | |
| Function Details |
|---|
combine_graphs(digraphs)Combine nodes and edges of all graphs in digraphs and return the resulting graph. |
nodes_reached_from_excluding_entry(digraph, entrypoints)From digraph, select all nodes that can be reached from one of the entrypoints, excluding the entrypoints. return type is a set. |
nodes_reached_from_including_entry(digraph, entrypoints)From digraph, select all nodes that can be reached from one of the entrypoints, including the entrypoints. Return type is a set. |
select_containing_edges(nodes, edges)From edges, select those whose ends are members of nodes (and return them). |
subgraph(digraph, nodes)From digraph, select nodes and remaining edges to form a new digraph. Return the new digraph. |
subtract_nodes(digraph, nodes)Subtract nodes from digraph, together with the affected edges. Return resulting digraph. |
| Trees | Index | Help |
|---|
| Generated by Epydoc 2.1 on Fri Nov 23 16:56:36 2007 | http://epydoc.sf.net |