Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
susan-garry committed Jul 12, 2024
1 parent a8202db commit a78c618
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions flatgfa/src/cmds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,8 +316,7 @@ impl<'a> SubgraphBuilder<'a> {
fn extract(&mut self, origin: Id<Segment>, dist: usize, max_distance_subpaths: usize, num_iterations: usize) {
self.include_seg(origin);

// Find the set of all segments that are 1 link away.
// assert_eq!(dist, 1, "only `-c 1` is implemented so far");
// Find the set of all segments that are c links away.
let mut frontier: Vec<Id<Segment>> = Vec::new();
let mut next_frontier: Vec<Id<Segment>> = Vec::new();
frontier.push(origin);
Expand Down

0 comments on commit a78c618

Please sign in to comment.