algograph 0.4.0

A (both directed and undirected) graph and their algorithms implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Traits and a naive implementation to support graphs with customzied vertex types and edge types.
//!
//! ```plain
//! Queryable    Growable   VertexShrinkable
//!     |            |             |
//!     |            |             v
//!     |            |       EdgeShrinkable
//!     |            |             |
//!     |            v             |
//!     +-------->  Base <---------+
//! ```
mod traits;
pub use self::traits::*;

mod naive_impl;
pub use self::naive_impl::*;