Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid printing metrics as float point numbers (#794)
The metrics in the output was displaying counts as floats instead of integers. For example, 15.0 instead of 15. This is due to a divide call using '/' instead of '//' which rounds down the answer. We shouldn't have fractional number results anyway since the counts are always divisible by the rank values. Signed-off-by: Eric Brown <browne@vmware.com>
- Loading branch information