//! Pathfinding library for calculating all node pairs' shortest paths in an unweighted undirected graph.
//!
//! See [prim] and [graph] modules for more information.
//!
//! ## Features
//!
//! - **parallel**: Enable parallelism using Rayon; this feature is enabled by default.
pub use ;
pub use ;
/// Given two node IDs, return a tuple of the two IDs in ascending order.