pub trait TopologicalOrder {
// Required method
fn topological_order(&self) -> Option<Vec<usize>>;
}Expand description
Topological sort trait.
pub trait TopologicalOrder {
// Required method
fn topological_order(&self) -> Option<Vec<usize>>;
}Topological sort trait.