gt_hypercube/
lib.rs

1mod hypercube;
2pub use crate::hypercube::HyperCube;
3
4pub mod graph {
5    pub use gt_directed_bijective_connection_graph::{
6        NPathsToNode, NodeToNodeDisjointPaths, NodeToSetDisjointPaths, SinglePath,
7    };
8}