wolf-graph 0.1.0

Data structures and algorithms for working with graphs with reference or value semantics.
Documentation
mod visitable_graph;
pub use visitable_graph::VisitableGraph;

mod mutable_graph;
pub use mutable_graph::MutableGraph;

mod visitable_tree;
pub use visitable_tree::VisitableTree;

mod mutable_tree;
pub use mutable_tree::MutableTree;

mod visitable_compound;
pub use visitable_compound::VisitableCompound;

mod mutable_compound;
pub use mutable_compound::MutableCompound;

mod visitable_forest;
pub use visitable_forest::VisitableForest;

mod mutable_forest;
pub use mutable_forest::MutableForest;