IDiGraph<'V, 'E> Type
Represents a directed graph (digraph) interface.
Instance members
| Instance member |
Description
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Returns a cloned copy of this graph.
|
|
|
|
|
|
|
Full Usage:
this.Reverse
Parameters:
IEnumerable<IVertex<'V>>
Returns: IDiGraph<'V, 'E>
Modifiers: abstract |
Returns a new transposed (i.e., reversed) graph. The given set of vertices will be used to set the root vertices of the transposed graph.
|
Full Usage:
this.SetRoots
Parameters:
IEnumerable<IVertex<'V>>
Returns: IDiGraph<'V, 'E>
Modifiers: abstract |
Sets root vertices for this graph. `AddVertex` will automatically set the root vertex to the first vertex added to the graph, but this function allows the user to set root vertices explicitly.
|
B2R2