Crate simplegraph

Source

Re-exports§

pub use adjacency_list_graph::AdjList;
pub use graph::Graph;
pub use matrix_graph::MatrixGraph;
pub use visitor::GraphVisitor;

Modules§

adjacency_list_graph
Adjacency list graph implementation.
dot
Convert visitable graph into dot source code.
graph
Update a graph’s arcs and weights.
math_graph
Pseudo-math representation of a graph. Used only as a command middleman for Serde.
matrix_graph
Adjacency matrix graph implementation.
path_cost
Compute the cost of all sub path.
visitor
Common interface to access a graph’s topology.

Enums§

GraphType
Specify, for a graph, if it is direct or not.

Traits§

GetGraphType
Return the graph’s type