Click or drag to resize
DepthFirstSearchCrawler<TVertex, TEdge>.Crawl Method (TVertex)
Crawls the graph set as the graphToCrawl in the constructor, starting with the vertex specified. If the vertex isn't in the graph, the routine is a no-op

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 void Crawl(
	TVertex vertexToStart
)

Parameters

vertexToStart
Type: TVertex
The vertex to start the crawl operation.
Remarks
vertexToStart can't be null, as a graph can't contain null vertices
See Also