summaryrefslogtreecommitdiff
path: root/math/transforms/fftMul.cpp
diff options
context:
space:
mode:
authorMZuenni <michi.zuendorf@gmail.com>2023-03-01 16:56:27 +0100
committerMZuenni <michi.zuendorf@gmail.com>2023-03-01 16:56:27 +0100
commitb15088d04aac27a3ef94cf79e68d681d735b1bbc (patch)
tree96ba00e474790acd62d10a5d1ae5699e42cf6b4c /math/transforms/fftMul.cpp
parentd8eefacaebee4e08aa92ae507d49079d90a93580 (diff)
reformatted empty lines
Diffstat (limited to 'math/transforms/fftMul.cpp')
-rw-r--r--math/transforms/fftMul.cpp2
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);
}