Click or drag to resize

BellmanFordShortestPathAlgorithm<TVertex, TEdge> Constructor (IAlgorithmComponent, IVertexAndEdgeListGraph<TVertex, TEdge>, Func<TEdge, Double>, IDistanceRelaxer)

Namespace:  QuickGraph.Algorithms.ShortestPath
Assembly:  RebornBuddy (in RebornBuddy.exe) Version: 3.3.1; net-4.5.win32; release
Syntax
C#
public BellmanFordShortestPathAlgorithm(
	IAlgorithmComponent host,
	IVertexAndEdgeListGraph<TVertex, TEdge> visitedGraph,
	Func<TEdge, double> weights,
	IDistanceRelaxer distanceRelaxer
)

Parameters

host
Type: QuickGraph.Algorithms.Services.IAlgorithmComponent
visitedGraph
Type: QuickGraph.IVertexAndEdgeListGraph<TVertex, TEdge>
weights
Type: System.Func<TEdge, Double>
distanceRelaxer
Type: QuickGraph.Algorithms.IDistanceRelaxer
See Also