hyperpaths_rs/lib.rs
1//! Implementation of Spiess, H. and Florian, M. (1989) "Optimal strategies:
2//! A new assignment model for transit networks".
3//! See the ref. at spiess_floarian.tex LaTeX file.
4
5mod demand;
6mod hyperpath;
7mod hyperpath_queue;
8mod spiess_floarian;
9mod transit_network;
10
11pub use demand::{assign_demand, Volumes};
12pub use hyperpath::{find_optimal_strategy, Strategy, VERBOSE};
13pub use spiess_floarian::{compute_sf, SFResult};
14pub use transit_network::Link;