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

Generates a topological order for the given graph.