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.3.5.0 (1.3.18.1017)
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