diff options
Diffstat (limited to 'math')
| -rw-r--r-- | math/transforms/fftMul.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/math/transforms/fftMul.cpp b/math/transforms/fftMul.cpp index a1205f6..542404e 100644 --- a/math/transforms/fftMul.cpp +++ b/math/transforms/fftMul.cpp @@ -9,6 +9,6 @@ vector<cplx> mul(vector<cplx>& a, vector<cplx>& b) { cplx x = (c[i] + conj(c[j])) / cplx{2, 0}; //fft(a)[i]; cplx y = (c[i] - conj(c[j])) / cplx{0, 2}; //fft(b)[i]; d[i] = x * y; - } + } return fft(d, true); } |
