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 cache;
9pub mod error;
10pub mod graph;
11
12pub use cache::CachedProperty;
13pub use error::{IgraphError, IgraphResult};
14pub use graph::{Graph, VertexId};