Skip to content

Commit

Permalink
Prints the size of path in output
Browse files Browse the repository at this point in the history
  • Loading branch information
dubssieg committed Nov 5, 2024
1 parent 0ad400f commit 0ba7515
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/compute_distance.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ pub fn distance(

println!("# Intersection of paths: {:?}", intersection);

// Print the length of every path in the intersection
for path_name in intersection.iter() {
println!("## {}\t{}", path_name, path_lengths1[path_name.as_str()]);
}

let mut equivalences_count = 0;
let mut merges_count = 0;
let mut splits_count = 0;
Expand Down

0 comments on commit 0ba7515

Please sign in to comment.