Exemplo n.º 1
0
 public static bool DijkstraWithPlan <V, E>(
     this Graph <V, E> graph,
     int from,
     int to,
     WeightCalculator <E> calculator,
     out GraphPlan <V, E> path,
     ExplorationCallbacks <V, E> callbacks = default
     )
 {
     return(graph.AStarWithPlan(from, to, ZeroHeuristics, calculator, out path, callbacks));
 }