aStarSearchNoInit

Undocumented in source.
template aStarSearchNoInit(GraphT, VertexDescriptorT, HeuristicT, VisitorT = NullAstarVisitor!GraphT, ColourMapT = Colour[VertexDescriptorT], PredecessorMapT = VertexDescriptorT[VertexDescriptorT], WeightMapT = real[VertexDescriptorT], DistanceMapT = real[VertexDescriptorT], CostMapT = real[VertexDescriptorT])
void
aStarSearchNoInit
(
ref const(GraphT) g
,
VertexDescriptorT src
,
HeuristicT heuristic
,
ref const(WeightMapT) weights
,
ref PredecessorMapT predecessorMap
,
VisitorT visitor
,
ref ColourMapT colourMap
,
ref DistanceMapT distanceMap
,
ref CostMapT costMap
)

Members

Aliases

EdgeDescriptorT
alias EdgeDescriptorT = GraphT.EdgeDescriptor
Undocumented in source.

Functions

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

Meta