Skip to content
Snippets Groups Projects
Commit 6dd9bd67 authored by Tom Fischer's avatar Tom Fischer Committed by Dmitri Naumov
Browse files

[GL] Change Grid<POINT>::getGridCoords.

Sometimes the computed grid coordinates are to large which leads to memory errors.
parent e9fd8513
No related branches found
No related tags found
No related merge requests found
...@@ -179,7 +179,6 @@ private: ...@@ -179,7 +179,6 @@ private:
std::array<std::size_t,3> _n_steps; std::array<std::size_t,3> _n_steps;
std::array<double, 3> _step_sizes; std::array<double, 3> _step_sizes;
std::array<double, 3> _inverse_step_sizes;
/** /**
* This is an array that stores pointers to POINT objects. * This is an array that stores pointers to POINT objects.
*/ */
...@@ -189,10 +188,11 @@ private: ...@@ -189,10 +188,11 @@ private:
template <typename POINT> template <typename POINT>
template <typename InputIterator> template <typename InputIterator>
Grid<POINT>::Grid(InputIterator first, InputIterator last, Grid<POINT>::Grid(InputIterator first, InputIterator last,
std::size_t max_num_per_grid_cell) std::size_t max_num_per_grid_cell)
: GeoLib::AABB(first, last), _n_steps({{1,1,1}}), : GeoLib::AABB(first, last),
_step_sizes({{0.0,0.0,0.0}}), _inverse_step_sizes({{0.0,0.0,0.0}}), _n_steps({{1, 1, 1}}),
_grid_cell_nodes_map(nullptr) _step_sizes({{0.0, 0.0, 0.0}}),
_grid_cell_nodes_map(nullptr)
{ {
auto const n_pnts(std::distance(first,last)); auto const n_pnts(std::distance(first,last));
...@@ -216,7 +216,6 @@ Grid<POINT>::Grid(InputIterator first, InputIterator last, ...@@ -216,7 +216,6 @@ Grid<POINT>::Grid(InputIterator first, InputIterator last,
delta[k] = std::numeric_limits<double>::epsilon(); delta[k] = std::numeric_limits<double>::epsilon();
} }
_step_sizes[k] = delta[k] / _n_steps[k]; _step_sizes[k] = delta[k] / _n_steps[k];
_inverse_step_sizes[k] = 1.0 / _step_sizes[k];
} }
// fill the grid vectors // fill the grid vectors
...@@ -377,16 +376,24 @@ template <typename T> ...@@ -377,16 +376,24 @@ template <typename T>
std::array<std::size_t,3> Grid<POINT>::getGridCoords(T const& pnt) const std::array<std::size_t,3> Grid<POINT>::getGridCoords(T const& pnt) const
{ {
std::array<std::size_t,3> coords; std::array<std::size_t,3> coords;
for (std::size_t k(0); k<3; k++) { for (std::size_t k(0); k < 3; k++)
if (pnt[k] < _min_pnt[k]) { {
if (pnt[k] < _min_pnt[k])
{
coords[k] = 0; coords[k] = 0;
} else { }
if (pnt[k] > _max_pnt[k]) { else
coords[k] = _n_steps[k]-1; {
} else { if (pnt[k] >= _max_pnt[k])
{
coords[k] = _n_steps[k] - 1;
}
else
{
coords[k] = static_cast<std::size_t>( coords[k] = static_cast<std::size_t>(
std::floor((pnt[k] - _min_pnt[k])) * std::floor((pnt[k] - _min_pnt[k])) /
_inverse_step_sizes[k]); std::nextafter(_step_sizes[k],
std::numeric_limits<double>::max()));
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment