We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fd8b8d commit c4ee78bCopy full SHA for c4ee78b
src/rs/_internal/search/hash_prune_table.rs
@@ -272,10 +272,10 @@ impl<TPuzzle: SemiGroupActionPuzzle + HashablePatternPuzzle> PruneTable<TPuzzle>
272
273
self.mutable.search_logger.write_info(&format!(
274
"[Prune table] Population is {} entries ({}% of {} slots).",
275
- self.mutable.population,
+ self.mutable.population.separate_with_underscores(),
276
((self.mutable.population as f32) / (self.mutable.prune_table_size as f32)).round()
277
as usize,
278
- self.mutable.prune_table_size
+ self.mutable.prune_table_size.separate_with_underscores()
279
));
280
}
281
0 commit comments