gdsl 0.2.1

GDSL is a graph data-structure library including graph containers, connected node strutures and efficient algorithms on those structures. Nodes are independent of a graph container and can be used as connected smart pointers.
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

pub mod bfs;
pub mod dfs;
pub mod order;
pub mod pfs;

mod method;
mod path;