rust-igraph 0.0.1-alpha.4

Pure-Rust, high-performance graph & network analysis library — 400+ algorithms, zero unsafe, igraph-compatible
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 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 cache;
pub mod error;
pub mod graph;
pub mod rng;

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