1 2 3 4 5 6 7 8 9 10 11 12
#![forbid(unsafe_code)] #![deny(missing_docs)] //! Implementation of the ID-Tree data structure from: //! *“Constant-time Connectivity Querying in Dynamic Graphs”* (ACM, 2024). mod idtree; #[cfg(feature = "python")] mod python; pub use crate::idtree::IdTree;