Skip to main content

dfs

Function dfs 

Source
pub fn dfs(
    graph: &CsrGraph,
    start: MemoryId,
    max_depth: usize,
) -> Vec<(MemoryId, usize)>
Expand description

Depth-first search returning (node, depth) pairs.