From 1dbe46a3587324fdc6276de32195e6b89a2fe01f Mon Sep 17 00:00:00 2001 From: Guilhem Lavaux Date: Wed, 11 Feb 2015 18:23:28 +0100 Subject: [PATCH] Added missing FFTW call --- src/fourier/fft/fftw_calls.hpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/fourier/fft/fftw_calls.hpp b/src/fourier/fft/fftw_calls.hpp index b5f37db..f61f94b 100644 --- a/src/fourier/fft/fftw_calls.hpp +++ b/src/fourier/fft/fftw_calls.hpp @@ -90,6 +90,13 @@ public: \ { \ return prefix ## _plan_dft_r2c_3d(Nx, Ny, Nz, in, out, flags); \ } \ + static plan_type plan_dft_c2r_3d(int Nx, int Ny, int Nz, \ + complex_type *in, real_type *out, \ + unsigned flags) \ + { \ + return prefix ## _plan_dft_c2r_3d(Nx, Ny, Nz, in, out, flags); \ + } \ +\ static plan_type plan_dft_r2c(int rank, const int *n, real_type *in, \ complex_type *out, unsigned flags) \ { \