rust-igraph 0.0.1-alpha.0

Pure-Rust port of the igraph network analysis library (alpha — Phase 0).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Core data structures for rust-igraph.
//!
//! Phase 0 walking-skeleton scope: just enough types so `algorithms::bfs`,
//! `algorithms::io::read_edgelist`, and the oracle test can land. The full
//! `igraph_t`-equivalent structure replaces this during Phase 1
//! (see `docs/plans/MASTER_PLAN.md`).

pub mod error;
pub mod graph;

pub use error::{IgraphError, IgraphResult};
pub use graph::{Graph, VertexId};