Interface ISubGraph
Represents a region of a graph, comprising of a subset of nodes of the full graph.
public interface ISubGraph
Methods
GetNodes()
Gets a collection of nodes that this segment contains.
IEnumerable<INode> GetNodes()
Returns
- IEnumerable<INode>
The nodes.
GetSubGraphs()
Gets a collection of sub graphs that this segment contains (if any).
IEnumerable<ISubGraph> GetSubGraphs()
Returns
- IEnumerable<ISubGraph>
The sub graphs.