Skip to content

Commit e6bf417

Browse files
committed
Formatting
1 parent c42d912 commit e6bf417

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cpp/lib/Transformer.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
#include "Transformer.hpp"
66

77
namespace ahr {
8-
void ahr::Transformer::init() {
8+
void Transformer::init() {
99
auto r = grid.rBufXY();
1010
auto c = grid.cBufXY();
1111
fftFwd = fftw::plan_r2c<2u>::dft(r.to_mdspan(), c.to_mdspan(), fftw::ESTIMATE);
1212
fftBwd = fftw::plan_c2r<2u>::dft(c.to_mdspan(), r.to_mdspan(), fftw::ESTIMATE);
1313
}
14+
1415
void Transformer::fft(Grid::View::R_XY in, Grid::View::C_XY out) const { fftFwd(in, out); }
1516

1617
void Transformer::bfft(Grid::View::C_XY in, Grid::View::R_XY out) const { fftBwd(in, out); }

0 commit comments

Comments
 (0)