summaryrefslogtreecommitdiff
path: root/math/transforms/fft.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/transforms/fft.cpp')
-rw-r--r--math/transforms/fft.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/transforms/fft.cpp b/math/transforms/fft.cpp
index 4540ed8..6c5f5a8 100644
--- a/math/transforms/fft.cpp
+++ b/math/transforms/fft.cpp
@@ -1,4 +1,4 @@
-using cplx = complex<double>; // Eigene Implementierung ist schneller.
+using cplx = complex<double>;
void fft(vector<cplx>& a, bool inverse = 0) {
int n = sz(a);