icentral-alg 0.1.0

A Rust crate for incremental and parallel betweenness centrality algorithms.
Documentation
#[macro_use] pub mod imports; use imports::*;

#[cfg(target_feature = "mpi")]
pub use mpi::{
    ffi::{MPI_Status,MPI_Send,RSMPI_UINT8_T,RSMPI_COMM_WORLD,MPI_ANY_TAG},
    traits::{Destination,Communicator},
    collective::CommunicatorCollectives,
};

x!{do_paper_exp}
x!{do_paper_exp_inc_brandes}
x!{do_paper_exp_inc_qube}
x!{fill_path_vec}
x!{icentral_alg}
x!{icentral_block}
x!{icentral_iter}
x!{kdd_exp_main}
x!{paper_exp_main}
x!{run_parallel_brandes}