//! Shared utilities for graph algorithms
//!
//! Provides a read-only, optimized view of the graph topology for algorithm execution.
use HashMap;
/// Node Identifier type (u64)
pub type NodeId = u64;
/// A dense, integer-indexed view of the graph topology.