Click or drag to resize

TopologicalSorterTVertex, TEdgeOnVisited 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.4.0.0 (1.4.19.0711)
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.GenericHashSetTEdge
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