1pub mod atomic_extra; 2pub mod compute; 3pub mod core; 4#[cfg(feature = "python")] 5pub mod python; 6 7pub mod inherit; 8pub mod iter; 9 10#[derive(PartialOrd, PartialEq, Debug)] 11pub enum GraphType { 12 EventGraph, 13 PersistentGraph, 14}