Function import_graph

Source
pub fn import_graph(
    progs: HashMap<String, &'_ Node<Program>>,
) -> Result<Vec<Vec<String>>>
Expand description

Process a number of programs, returning the graph of dependencies.

This will (currently) return a list of lists of IDs that can be safely run concurrently. Each “stage” is blocking in this model, which will change in the future. Don’t use this function widely, yet.