pub fn topological_order<Labels>(
    graph: &HashMap<usize, HashMap<usize, Labels, RandomState, Global>, RandomState, Global>
) -> Result<Vec<usize, Global>, DependencyGraphError<Labels>> where
    Labels: Clone
Expand description

Generates a topological order for the given graph.