Click or drag to resize
DepthFirstSearchCrawler<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
Assembly: SD.Tools.Algorithmia (in SD.Tools.Algorithmia.dll) Version: 1.2.0.0 (1.2.14.1118)
Syntax
protected virtual 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