Click or drag to resize

TopologicalSorter<TVertex, TEdge>.OnVisited Method

Called when the vertexVisited was visited over the edges specified. This method is called right after all vertices related to vertexVisited were visited.

Namespace:  SD.Tools.Algorithmia.Graphs.Algorithms
Assembly:  SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.3.3.0 (1.3.18.0209)
Syntax
protected override void OnVisited(
	TVertex vertexVisited,
	HashSet<TEdge> edges
)

Parameters

vertexVisited
Type: TVertex
The vertex visited right before this method.
edges
Type: System.Collections.Generic.HashSet<TEdge>
The edges usable to visit vertexVisited. Can be null, in which case the vertex was visited without using an edge (which would mean the vertex is a tree root, or the start vertex.)
See Also