vulture 0.23.0

Rust implementation of RAPTOR (Round-bAsed Public Transit Routing)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Private algorithm internals: per-round helpers, the per-call
//! driver, and the rRAPTOR range scan. Nothing in this module is part
//! of the public API; downstream callers use [`crate::Query`],
//! [`crate::Timetable`], and [`crate::RaptorCache`].

pub(crate) mod boarding;
pub(crate) mod footpaths;
pub(crate) mod label_bag;
pub(crate) mod per_call;
pub(crate) mod range;