Class Dykstra
A default implementation of the generic dykstra algorithm.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public sealed class Dykstra : Dykstra<float>, IEdgeVisitor<float>, IAlgorithm
Constructors
Dykstra(Graph, DefaultWeightHandler, Func<UInt32, UInt32>, IEnumerable<EdgePath<Single>>, Single, Boolean)
Creates a new one-to-all dykstra algorithm instance.
Declaration
public Dykstra(Graph graph, DefaultWeightHandler weightHandler, Func<uint, uint> getRestriction, IEnumerable<EdgePath<float>> sources, float sourceMax, bool backward)
Parameters
Graph
graph
|
DefaultWeightHandler
weightHandler
|
Func<System.UInt32, System.UInt32>
getRestriction
|
IEnumerable<EdgePath<System.Single>>
sources
|
System.Single
sourceMax
|
System.Boolean
backward
|
Dykstra(Graph, Func<UInt16, Factor>, Func<UInt32, UInt32>, IEnumerable<EdgePath<Single>>, Single, Boolean)
Creates a new one-to-all dykstra algorithm instance.
Declaration
public Dykstra(Graph graph, Func<ushort, Factor> getFactor, Func<uint, uint> getRestriction, IEnumerable<EdgePath<float>> sources, float sourceMax, bool backward)
Parameters
Graph
graph
|
Func<System.UInt16, Factor>
getFactor
|
Func<System.UInt32, System.UInt32>
getRestriction
|
IEnumerable<EdgePath<System.Single>>
sources
|
System.Single
sourceMax
|
System.Boolean
backward
|