cch 0.1.0

Pure-Rust Customizable Contraction Hierarchies (CCH): build, customize, and serve fast shortest-path distance, many-to-many matrix, and path queries on road networks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Inertial nested-dissection internals.
//
// Module tree:
// - `fragment`: `GraphFragment`, `CutSide`, construction helpers,
//   component decomposition, source/target selection, separator derivation.
//
// Items are `pub(crate)` staging: they have no non-test callers yet, so
// suppress the dead_code lint here rather than throughout each file.
#![allow(dead_code)]

pub(crate) mod flow;
pub(crate) mod fragment;
pub(crate) mod inertial;