aStarSearch

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

Members

Functions

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

Meta