Browse Source

comm + simpl

Thomas 1 year ago
parent
commit
2e0e61aa67
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/lib.rs

+ 3 - 0
src/lib.rs

@@ -1407,6 +1407,9 @@ mod tests {
             .enumerate()
             .for_each(|(i, s)| println!("{}\t{s}", i + 1));
 
+        let all_bp: Vec<BreakPoint> = graph.node_weights().map(|n| n.clone()).collect();
+        println!("{} unique breakpoints considered.", all_bp.len());
+
         // monallellic way ?
 
         Ok(())