rust-igraph 0.0.1-alpha.2

Pure-Rust port of the igraph network analysis library (alpha — Phase 1 complete).
Documentation
//! Graph operators (ALGO-OP-*). Phase 1: `simplify` (remove loops and/or
//! parallel edges, returning a new [`crate::Graph`]).

// `pub(crate)` so the inner module names don't double-list with the
// function re-exports in rustdoc.
pub(crate) mod complementer;
pub(crate) mod difference;
pub(crate) mod disjoint_union;
pub(crate) mod intersection;
pub(crate) mod is_same_graph;
pub(crate) mod simplify;
pub(crate) mod union;

pub use complementer::complementer;
pub use difference::difference;
pub use disjoint_union::{disjoint_union, disjoint_union_many};
pub use intersection::intersection;
pub use is_same_graph::is_same_graph;
pub use simplify::simplify;
pub use union::union;