Skip to content
Snippets Groups Projects
Commit d49f0ed1 authored by Tom Fischer's avatar Tom Fischer
Browse files

Set delta to a small value.

In case delta is really zero, set it to a small value to omit division by zero.
parent a0a795d7
No related branches found
No related tags found
No related merge requests found
...@@ -122,6 +122,9 @@ public: ...@@ -122,6 +122,9 @@ public:
// some frequently used expressions to fill the grid vectors // some frequently used expressions to fill the grid vectors
for (std::size_t k(0); k < 3; k++) { for (std::size_t k(0); k < 3; k++) {
if (fabs(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]; _inverse_step_sizes[k] = 1.0 / _step_sizes[k];
} }
......
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