Spaces:
Sleeping
Sleeping
File size: 401 Bytes
fb8fccc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | //! Deterministic delivery demo-data modules.
//!
//! `entrypoints` owns the public dataset ids, while each city module owns its
//! depots and stops. The solver receives ordinary `Plan` values; there is no
//! hidden runtime data source behind these seeds.
mod entrypoints;
mod firenze;
mod hartford;
mod philadelphia;
mod types;
pub use entrypoints::{generate, DemoData};
#[cfg(test)]
mod tests;
|