aStarSearch.aStarSearch

Undocumented in source. Be warned that the author may not have intended to support it.
  1. void aStarSearch(const(GraphT) g, VertexDescriptorT src, HeuristicT heuristic, const(WeightMapT) weights, PredecessorMapT predecessorMap, VisitorT visitor, ColourMapT colourMap, DistanceMapT distanceMap, CostMapT costMap)
    template aStarSearch(GraphT, VertexDescriptorT, HeuristicT, VisitorT = NullAstarVisitor!GraphT, ColourMapT = Colour[VertexDescriptorT], PredecessorMapT = VertexDescriptorT[VertexDescriptorT], WeightMapT = real[VertexDescriptorT], DistanceMapT = real[VertexDescriptorT], CostMapT = real[VertexDescriptorT])
    void
    aStarSearch
    (
    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
    )
  2. template aStarSearch(GraphT, VertexDescriptorT, HeuristicT, VisitorT = NullAstarVisitor!GraphT, WeightMapT = real[VertexDescriptorT], PredecessorMapT = VertexDescriptorT[VertexDescriptorT], DistanceMapT = real[VertexDescriptorT])

Meta