Header menu logo B2R2

IGraph<'V, 'E> Type

Graph interface.

Instance members

Instance member Description

this.AddEdge

Full Usage: this.AddEdge

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

Add an edge from src to dst with the given label.

src : IVertex<'V>
dst : IVertex<'V>
label : 'E
Returns: IGraph<'V, 'E>

this.AddEdge

Full Usage: this.AddEdge

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

Add an edge between src and dst.

src : IVertex<'V>
dst : IVertex<'V>
Returns: IGraph<'V, 'E>

this.AddVertex

Full Usage: this.AddVertex

Returns: IVertex<'V> * IGraph<'V, 'E>
Modifiers: abstract

Add a vertex to the grpah without any data attached to it.

Returns: IVertex<'V> * IGraph<'V, 'E>

this.AddVertex

Full Usage: this.AddVertex

Parameters:
Returns: IVertex<'V> * IGraph<'V, 'E>
Modifiers: abstract

Add a vertex to the graph using a data value and a vertex ID, and return a reference to the added vertex. This function assumes that the vertex ID is unique in the graph, thus it needs to be used with caution.

data : 'V
vid : VertexID
Returns: IVertex<'V> * IGraph<'V, 'E>

this.AddVertex

Full Usage: this.AddVertex

Parameters:
    data : 'V

Returns: IVertex<'V> * IGraph<'V, 'E>
Modifiers: abstract

Add a vertex to the graph using a data value, and return a reference to the added vertex.

data : 'V
Returns: IVertex<'V> * IGraph<'V, 'E>

this.Clone

Full Usage: this.Clone

Returns: IGraph<'V, 'E>
Modifiers: abstract

Return a cloned copy of this graph.

Returns: IGraph<'V, 'E>

this.RemoveEdge

Full Usage: this.RemoveEdge

Parameters:
    edge : Edge<'V, 'E>

Returns: IGraph<'V, 'E>
Modifiers: abstract

Remove the given edge from the graph. The input edge does not need to have the same label as the one in the graph; we only check the source and destination vertices to perform this operation.

edge : Edge<'V, 'E>
Returns: IGraph<'V, 'E>

this.RemoveEdge

Full Usage: this.RemoveEdge

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

Remove the edge that spans between src and dst.

src : IVertex<'V>
dst : IVertex<'V>
Returns: IGraph<'V, 'E>

this.RemoveVertex

Full Usage: this.RemoveVertex

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

Remove the given vertex from the graph.

arg0 : IVertex<'V>
Returns: IGraph<'V, 'E>

Type something to start searching.