1//! Contains the algorithms for generating random graph used by this crate. 2 3#[allow(dead_code)] 4pub mod erdos_renyi; 5#[allow(dead_code)] 6pub mod planar;