petgraph_gen/lib.rs
1//! `petgraph-gen` is a crate that extends [petgraph](https://github.com/petgraph/petgraph)
2//! with functions that generate graphs with different properties.
3
4mod barabasi_albert;
5mod classic;
6mod common;
7mod erdos_renyi;
8
9pub use self::barabasi_albert::barabasi_albert_graph;
10pub use self::classic::complete_graph;
11pub use self::classic::empty_graph;
12pub use self::classic::star_graph;
13pub use self::erdos_renyi::random_gnm_graph;
14pub use self::erdos_renyi::random_gnp_graph;