rust_igraph/core/mod.rs
1//! Core data structures for rust-igraph.
2//!
3//! Phase 0 walking-skeleton scope: just enough types so `algorithms::bfs`,
4//! `algorithms::io::read_edgelist`, and the oracle test can land. The full
5//! `igraph_t`-equivalent structure replaces this during Phase 1
6//! (see `docs/plans/MASTER_PLAN.md`).
7
8pub mod error;
9pub mod graph;
10
11pub use error::{IgraphError, IgraphResult};
12pub use graph::{Graph, VertexId};