Skip to content

Commit

Permalink
Split changes into two PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
tizianoGuadagnino committed Jul 9, 2024
1 parent dc9ae0e commit 07634eb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cpp/kiss_icp/core/VoxelHashMap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,7 @@ struct VoxelHashMap {
explicit VoxelHashMap(double voxel_size, double max_distance, int max_points_per_voxel)
: voxel_size_(voxel_size),
max_distance_(max_distance),
max_points_per_voxel_(max_points_per_voxel),
map_(1 << 16) {
map_.min_load_factor(0.05f);
map_.max_load_factor(0.75f);
}
max_points_per_voxel_(max_points_per_voxel) {}

inline void Clear() { map_.clear(); }
inline bool Empty() const { return map_.empty(); }
Expand Down

0 comments on commit 07634eb

Please sign in to comment.