/*!
# Parallel Algorithms Extension
This extension provides parallel implementations of computationally intensive graph algorithms
using Rayon for multi-threading. These implementations can provide 4-8x speedup on multi-core machines.
All parallel functions have the `_parallel` suffix to distinguish them from sequential versions.
Independent of other extensions; depends only on core.
*/
// Re-export main functions for convenience
pub use bfs_parallel;
pub use clustering_coefficients_parallel;
pub use connected_components_parallel;
pub use degrees_parallel;
pub use pagerank_parallel;
pub use shortest_paths_parallel;
pub use triangles_parallel;