idtree 0.2.0

ID-Tree dynamic connectivity data structure
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// #![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;

/// Bridge between C++ and Rust
pub mod bridge;