1
 2
 3
 4
 5
 6
 7
 8
 9
10
pub mod matching;
pub mod graph;
mod blossom;
mod forest;

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

pub use self::graph::Graph;
pub use self::matching::Matching;