diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-30 11:23:38 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-30 11:23:38 -0300 | 
| commit | 947daeb85321ed804bc3142623844b2617cb1b3e (patch) | |
| tree | 5e91dfa3bf674210854d9402714f2ae1b909f3c9 /log-fourier.hpp | |
| parent | d422676a24bc3967ab3f319d60f7798081dab4e5 (diff) | |
| download | code-947daeb85321ed804bc3142623844b2617cb1b3e.tar.gz code-947daeb85321ed804bc3142623844b2617cb1b3e.tar.bz2 code-947daeb85321ed804bc3142623844b2617cb1b3e.zip | |
Support long double in the integrator
Diffstat (limited to 'log-fourier.hpp')
| -rw-r--r-- | log-fourier.hpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/log-fourier.hpp b/log-fourier.hpp index e232bd6..97c0e15 100644 --- a/log-fourier.hpp +++ b/log-fourier.hpp @@ -11,8 +11,8 @@ class LogarithmicFourierTransform {  private:    Complex* a;    Complex* â; -  fftw_plan a_to_â; -  fftw_plan â_to_a; +  FFTW_PLAN a_to_â; +  FFTW_PLAN â_to_a;    unsigned N;    unsigned pad;    Real k; | 
