cycleRemoval method

void cycleRemoval()

Implementation

void cycleRemoval() {
  graph.nodes.forEach((node) {
    dfs(node);
  });
}