Skip to content

Commit

Permalink
same number of unique values, same set of values
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed Nov 15, 2023
1 parent 908984c commit bf5e8e0
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,12 @@ private static void compareTwoReports(String reportDestinationFolder, ByteRateOf

report.println(id + " different sets " + s1.getUniqueValues() + " vs " + s2.getUniqueValues());

} else {
// same number of unique values, same set of values
if (s1.totalTransitions != s2.totalTransitions) {
report.println(id + " total number of transitions " + s1.totalTransitions + "/" + s2.totalTransitions);
}
}


}
}

Expand Down

0 comments on commit bf5e8e0

Please sign in to comment.