1mod edge;
2mod edge_type;
34pub(crate) mod adjacency_matrix;
56// re-export mod edge to reduce the depth of the public module tree.
7// As long as mod edge remains the only public mod in this module,
8// further decomposition of the tree is not useful.
9pub use edge::*;
10pub use edge_type::*;