Click or drag to resize

GraphBaseTVertex, TEdgeGetEdges Method

Gets all the edges between startVertex and endVertex.

Namespace:  SD.Tools.Algorithmia.Graphs
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.4.0.0 (1.4.19.0711)
Syntax
public HashSet<TEdge> GetEdges(
	TVertex startVertex,
	TVertex endVertex
)

Parameters

startVertex
Type: TVertex
The start vertex.
endVertex
Type: TVertex
The end vertex.

Return Value

Type: HashSetTEdge
Set of edges between startVertex and endVertex or an empty set if one or both vertices aren't part of this graph or there are no edges.
See Also