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

Generates a topological order for the given graph.