rust-igraph 0.0.1-alpha.4

Pure-Rust, high-performance graph & network analysis library — 400+ algorithms, zero unsafe, igraph-compatible
Documentation
//! Random graph generators (`ALGO-GN-*`).
//!
//! Each generator takes a `seed: u64` and runs against the shared
//! `SplitMix64` PRNG, so callers get fully
//! reproducible graphs without pulling in a `rand` dependency.

pub mod barabasi;
pub mod barabasi_aging;
pub mod barabasi_psumtree;
pub mod bipartite;
pub mod callaway_traits;
pub mod chung_lu;
pub mod cited_type;
pub mod citing_cited_type;
pub mod correlated;
pub mod degree_sequence;
pub mod degree_sequence_configuration_simple;
pub mod degree_sequence_fast_heur;
pub mod degree_sequence_vl;
pub mod dotproduct;
pub mod edge_switching_simple;
pub mod erdos_renyi;
pub mod establishment;
pub mod forestfire;
pub mod grg;
pub mod growing_random;
pub mod hsbm;
pub mod iea_game;
pub mod islands;
pub mod k_regular;
pub mod lastcit;
pub mod preference;
pub mod recent_degree;
pub mod recent_degree_aging;
pub mod sbm;
pub mod static_fitness;
pub mod tree;
pub mod watts;