diff --git a/server/algorithms/src/stats.rs b/server/algorithms/src/stats.rs index 4c65e234..6482d2e9 100644 --- a/server/algorithms/src/stats.rs +++ b/server/algorithms/src/stats.rs @@ -89,7 +89,7 @@ impl Stats { "|| [CLUSTERS] Total: {} | Avg Points: {}", self.total_clusters, if self.total_clusters > 0 { - self.total_points / self.total_clusters + self.points_covered / self.total_clusters } else { 0 },