Skip to main content

pagerank_checked_run

Function pagerank_checked_run 

Source
pub fn pagerank_checked_run<G: Graph>(
    graph: &G,
    config: PageRankConfig,
) -> Result<PageRankRun>
Expand description

Validated PageRank with full diagnostics. Errors on invalid config and returns a PageRankRun on success. Equivalent to calling PageRankConfig::validate then pagerank_run.