Skip to content
Snippets Groups Projects
Commit 285b2f8d authored by Joris van Zwieten's avatar Joris van Zwieten
Browse files

Bug 1453: Code clean-up.

parent 1d74c51a
No related branches found
No related tags found
No related merge requests found
...@@ -122,8 +122,8 @@ const JonesMatrix::View ArrayFactor::evaluateImpl(const Grid &grid, ...@@ -122,8 +122,8 @@ const JonesMatrix::View ArrayFactor::evaluateImpl(const Grid &grid,
const double shift = shift0 - C::_2pi * grid[FREQ]->center(f) const double shift = shift0 - C::_2pi * grid[FREQ]->center(f)
* delay_t; * delay_t;
(*p_re) += std::cos(shift); *p_re += std::cos(shift);
(*p_im) += std::sin(shift); *p_im += std::sin(shift);
++p_re; ++p_re;
++p_im; ++p_im;
} }
......
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