icentral-alg 0.1.0

A Rust crate for incremental and parallel betweenness centrality algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
crate::ix!();

pub fn run_parallel_brandes(
        graph_path:  String,
        output_paht: String,
        num_threads: i32)  {
    
    //1. read input graph
    //2. call run parallel brandes
    //3. write the result to disk (label: BC value)
}