public static Dictionary <TCell, int> DijkstraWhere <TCell, TMid>(this IDijkstra <TCell, TMid> dijkstra, TCell start, Func <TCell, bool> valid) { return(dijkstra.Build().ComputeWhere(start, valid)); }
public static Dictionary <TCell, int> DijkstraAll <TCell, TMid>(this IDijkstra <TCell, TMid> dijkstra, TCell start, IEnumerable <TCell> all) { return(dijkstra.Build().ComputeAll(start, all)); }
public static Dictionary <TCell, int> Dijkstra <TCell, TMid>(this IDijkstra <TCell, TMid> dijkstra, TCell start) { return(dijkstra.Build().Compute(start)); }
public static Dijkstra <TCell, TMid> ToDijkstra <TCell, TMid>(this IDijkstra <TCell, TMid> dijkstra) { return(dijkstra.Build()); }