summaryrefslogtreecommitdiff
path: root/log-fourier.hpp
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-30 11:23:38 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-30 11:23:38 -0300
commit947daeb85321ed804bc3142623844b2617cb1b3e (patch)
tree5e91dfa3bf674210854d9402714f2ae1b909f3c9 /log-fourier.hpp
parentd422676a24bc3967ab3f319d60f7798081dab4e5 (diff)
downloadcode-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.hpp4
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;