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.