//! Graph data structures for the Leiden algorithm.
//!
//! This module contains the core graph representation ([`GraphData`]) used by
//! all algorithm implementations, the builder ([`GraphDataBuilder`]) for
//! constructing graphs from any source, and the [`MoveComponents`] struct
//! used by quality functions.
/// Precomputed move components used by quality functions during local moving.
pub use GraphDataBuilder;
pub use GraphData;
pub use MoveComponents;