dijkstraShortestPathsNoInit

Undocumented in source.
template dijkstraShortestPathsNoInit(GraphT, VertexDescriptorT, VisitorT = NullDijkstraVisitor!GraphT, ColourMapT = Colour[VertexDescriptorT], PredecessorMapT = VertexDescriptorT[VertexDescriptorT], WeightMapT = real[VertexDescriptorT], DistanceMapT = real[VertexDescriptorT], alias sumFunction = (a, b) => a + b)
void
dijkstraShortestPathsNoInit
(
ref const(GraphT) g
,
VertexDescriptorT src
,
VisitorT visitor
,
ref ColourMapT colourMap
,
ref const(WeightMapT) weights
,
ref PredecessorMapT predecessorMap
,
ref DistanceMapT distanceMap
)

Members

Aliases

EdgeDescriptorT
alias EdgeDescriptorT = GraphT.EdgeDescriptor
Undocumented in source.

Functions

dijkstraShortestPathsNoInit
void dijkstraShortestPathsNoInit(const(GraphT) g, VertexDescriptorT src, VisitorT visitor, ColourMapT colourMap, const(WeightMapT) weights, PredecessorMapT predecessorMap, DistanceMapT distanceMap)
Undocumented in source. Be warned that the author may not have intended to support it.

Meta