Header menu logo B2R2

IDiGraphAccessible<'V, 'E> Type

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

this.Exits

Full Usage: this.Exits

Returns: IVertex<'V>[]
Modifiers: abstract

Get an array of exit vertices in the graph.

Returns: IVertex<'V>[]

this.GetPredEdges

Full Usage: this.GetPredEdges

Parameters:
Returns: Edge<'V, 'E>[]
Modifiers: abstract

Get the predecessor edges of the given vertex. This is only meaningful for directed graphs.

arg0 : IVertex<'V>
Returns: Edge<'V, 'E>[]

this.GetPreds

Full Usage: this.GetPreds

Parameters:
Returns: IVertex<'V>[]
Modifiers: abstract

Get the predecessors of the given vertex. This is only meaningful for directed graphs.

arg0 : IVertex<'V>
Returns: IVertex<'V>[]

this.GetRoots

Full Usage: this.GetRoots

Returns: IVertex<'V>[]
Modifiers: abstract

Get the root vertices of this graph. When there's no root, this will return an empty collection.

Returns: IVertex<'V>[]

this.GetSuccEdges

Full Usage: this.GetSuccEdges

Parameters:
Returns: Edge<'V, 'E>[]
Modifiers: abstract

Get the successor edges of the given vertex. This is only meaningful for directed graphs.

arg0 : IVertex<'V>
Returns: Edge<'V, 'E>[]

this.GetSuccs

Full Usage: this.GetSuccs

Parameters:
Returns: IVertex<'V>[]
Modifiers: abstract

Get the successors of the given vertex. This is only meaningful for directed graphs.

arg0 : IVertex<'V>
Returns: IVertex<'V>[]

this.Reverse

Full Usage: this.Reverse

Parameters:
Returns: IDiGraphAccessible<'V, 'E>
Modifiers: abstract

Return a new transposed (i.e., reversed) graph. The given set of vertices will be used to set the root vertices of the transposed graph.

arg0 : IEnumerable<IVertex<'V>>
Returns: IDiGraphAccessible<'V, 'E>

Type something to start searching.