1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
pub mod matching;
mod forest;
pub mod graph;
pub mod unweighted;
pub mod weighted;

pub type Vertex = usize;
pub type Edge = (Vertex, Vertex);

pub use self::unweighted::Graph;
pub use self::weighted::WeightedGraph;
pub use self::matching::Matching;