1 2 3 4 5 6 7 8 9
//! Graph traversal algorithms module. //! //! Graph traversal algorithms: BFS, DFS, IDDFS, and bidirectional search. //! All algorithms depend only on the core module for basic graph operations. pub mod algorithms; // Re-export commonly used functions pub use algorithms::{bfs, bidis, dfs, iddfs, try_bidirectional_search, try_iddfs};