mirror of
https://github.com/uutils/coreutils
synced 2024-11-05 14:21:32 +00:00
commit
5c65f44957
1 changed files with 1 additions and 6 deletions
|
@ -171,11 +171,6 @@ impl Graph {
|
|||
}
|
||||
|
||||
fn is_acyclic(&self) -> bool {
|
||||
for edges in self.out_edges.values() {
|
||||
if !edges.is_empty() {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
true
|
||||
self.out_edges.values().all(|edge| edge.is_empty())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue