IDiGraphAccessible<'V, 'E> Type
Represents a read-only directed graph information accessor. This interface provides a way to access the information of a directed graph without modifying it.
Instance members
| Instance member |
Description
|
|
Gets an array of exit vertices in the graph.
|
|
|
|
|
|
Gets the root vertices of this graph. When there's no root, this will return an empty collection.
|
|
|
|
|
Full Usage:
this.Reverse
Parameters:
IEnumerable<IVertex<'V>>
Returns: IDiGraphAccessible<'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.
|
B2R2