Builds a new Dijsktra searcher.

Namespace:  QuickGraph.Algorithms.ShortestPath
Assembly:  QuickGraph.Algorithms (in QuickGraph.Algorithms.dll) Version: 2.4.2.1502 (2.4.2.1502)

Syntax

C#
public DijkstraShortestPathAlgorithm(
	IVertexListGraph g,
	EdgeDoubleDictionary weights
)
Visual Basic (Declaration)
Public Sub New ( _
	g As IVertexListGraph, _
	weights As EdgeDoubleDictionary _
)

Remarks

This algorithm uses the .

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionAny argument is null

See Also