Click or drag to resize

UndirectedBreadthFirstSearchAlgorithm<TVertex, TEdge> Constructor (IUndirectedGraph<TVertex, TEdge>, IQueue<TVertex>, IDictionary<TVertex, GraphColor>)

Namespace:  QuickGraph.Algorithms.Search
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public UndirectedBreadthFirstSearchAlgorithm(
	IUndirectedGraph<TVertex, TEdge> visitedGraph,
	IQueue<TVertex> vertexQueue,
	IDictionary<TVertex, GraphColor> vertexColors
)

Parameters

visitedGraph
Type: QuickGraph.IUndirectedGraph<TVertex, TEdge>
vertexQueue
Type: QuickGraph.Collections.IQueue<TVertex>
vertexColors
Type: System.Collections.Generic.IDictionary<TVertex, GraphColor>
See Also