raphy 1.0.1

A graph data structure library
Documentation
1
2
3
4
5
6
7
8
9
extern crate rand;

extern crate raphy;
use raphy::csr::CSR;

fn main() {
    let csr = CSR::new_from_el_mmap(500000,String::from("graphs/large.el"));
    csr.write_fastcsr(String::from("graphs/large.csr"));
}