Skip to main content

topological_sort

Function topological_sort 

Source
pub fn topological_sort(store: &LpgStore) -> Option<Vec<NodeId>>
Expand description

Performs topological sort on a directed acyclic graph using Kahn’s algorithm.

§Returns

Some(order) if the graph is a DAG, None if there’s a cycle.