wolf-graph 0.1.0

Data structures and algorithms for working with graphs with reference or value semantics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Re-exports of the most commonly used items in the `wolf_graph` module.

pub use crate::{
    NodeID, EdgeID, Nodes, Edges, nid, eid,
    Graph, BlankGraph,
    Tree, BlankTree,
    DAG, BlankDAG,
    Compound, BlankCompound, CompoundBase,
    Forest, BlankForest,
    ReversedGraph,
    DFSVisitor, DepthFirstSearch, TopologicalSort, PathExists, IsTree,
    VisitableGraph, MutableGraph,
    VisitableTree, MutableTree,
    VisitableCompound, MutableCompound,
    VisitableForest, MutableForest,
    Data
};