inline void
 dijkstra_shortest_paths
   (const VertexListGraph& g,
    typename graph_traits<VertexListGraph>::vertex_descriptor s,
    PredecessorMap predecessor, DistanceMap distance, WeightMap weight,
    IndexMap index_map,
    Compare compare, Combine combine, DistInf inf, DistZero zero,
    DijkstraVisitor vis)
 {
   dijkstra_shortest_paths(g, s, predecessor, distance, weight, index_map,
                           compare, combine, inf, zero, vis,
                           no_named_parameters());
 }
Пример #2
0
 inline void
 dijkstra_shortest_paths
   (const VertexListGraph& g,
    SourceInputIter s_begin, SourceInputIter s_end,
    PredecessorMap predecessor, DistanceMap distance, WeightMap weight,
    IndexMap index_map,
    Compare compare, Combine combine, DistInf inf, DistZero zero,
    DijkstraVisitor vis)
 {
   dijkstra_shortest_paths(g, s_begin, s_end, predecessor, distance,
                           weight, index_map,
                           compare, combine, inf, zero, vis,
                           no_named_parameters());
 }