cch 0.2.0

Pure-Rust Customizable Contraction Hierarchies (CCH): build, customize in parallel, 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
// Phase-2 construction helpers — consumed by Tasks 9–10 (CCH structure
// building and customization).  The 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 bitvec;
pub(crate) mod id_map;
pub(crate) mod permutation;