emory-compare: explicitly state byte counts for total and matched

This commit is contained in:
Danny Robson 2019-04-24 07:43:43 +10:00
parent 32123d6cb5
commit a1d66393e6

View File

@ -179,5 +179,5 @@ int main (int argc, char const **argv)
[] (auto const &a, auto const &b) { return a + b.offset.second - b.offset.first; }
);
std::cout << "Found " << found.size () << " chunks of " << matching << " bytes for a factor of " << float (matching) / total << "\n";
std::cout << "Found " << found.size () << " chunks. " << matching << "/" << total << " bytes for a factor of " << float (matching) / total << "\n";
}