From b15088d04aac27a3ef94cf79e68d681d735b1bbc Mon Sep 17 00:00:00 2001 From: MZuenni Date: Wed, 1 Mar 2023 16:56:27 +0100 Subject: reformatted empty lines --- math/transforms/fftMul.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'math/transforms') 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 mul(vector& a, vector& 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); } -- cgit v1.2.3