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