gotgraph 0.2.0

A type-safe, scope-aware graph library that leverages Rust's type system to prevent common graph-related bugs at compile time
Documentation
1
2
3
4
5
6
7
8
9
//! Graph algorithms module.
//!
//! This module contains various graph algorithms implemented with safe, zero-cost abstractions.
//! All algorithms work with any type implementing the `Graph` trait.

/// Tarjan's strongly connected components algorithm.
pub mod tarjan;

pub use tarjan::tarjan;