#[cfg(feature = "temporal")]
use hypergraphx::prelude::*;
#[cfg(feature = "temporal")]
fn main() {
let mut graph: UndirectedTemporalGraph<(), ()> = UndirectedTemporalGraph::new();
graph.induced_shgraph(&[0, 1, 2]);
graph.degree_sequence();
let _ = graph.add_edge((), TemporalBehaviour::Permanent, vec![]);
(*graph).add_edge((), vec![]);
}
#[cfg(not(feature = "temporal"))]
fn main() {
println!("Dude, the file is temporal.rs for a reason. Go enable the feature.");
}