Skip to main content

pagerank_ref

Function pagerank_ref 

Source
pub fn pagerank_ref<G: GraphRef>(graph: &G, config: PageRankConfig) -> Vec<f64>
Expand description

Compute PageRank over borrowed adjacency lists.

Unlike pagerank, this path does not copy edge lists before iteration. Prefer it for CSR and adjacency-list representations that can return stable neighbor slices.