Use f32::min and f32::max

This commit is contained in:
Louis Dureuil 2024-09-18 11:43:07 +02:00
parent c2caff1716
commit 00f8d03f43
No known key found for this signature in database

View File

@ -408,10 +408,8 @@ impl FederatedFacets {
std::collections::btree_map::Entry::Occupied(mut entry) => {
let stats = entry.get_mut();
stats.min =
if stats.min <= index_stats.min { stats.min } else { index_stats.min };
stats.max =
if stats.max >= index_stats.max { stats.max } else { index_stats.max };
stats.min = f64::min(stats.min, index_stats.min);
stats.max = f64::max(stats.max, index_stats.max);
}
}
}