Expand description
Temporal path finding: earliest arrival, latest departure, and fastest paths.
Edges are represented as (src, dst, departure_time, travel_time) tuples so
that the departure from a node can be no earlier than the current arrival time
at that node (i.e. time-respecting paths).
Structsยง
- Temporal
Dijkstra - Dijkstra-style algorithms adapted for temporal (time-respecting) paths.
- Temporal
Path - A temporal path: a sequence of time-stamped hops through a graph.