Skip to main content

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::{Volumes, assign_demand};
12pub use hyperpath::{Strategy, VERBOSE, find_optimal_strategy};
13pub use spiess_floarian::{SFResult, compute_sf};
14pub use transit_network::Link;