From fe8b95b29e69946c81e65dfb7fd838c2922c5c00 Mon Sep 17 00:00:00 2001 From: Roland Stigge Date: Sat, 16 Feb 2019 18:25:24 +0100 Subject: Cleanup --- Makefile | 2 +- TODO | 3 --- fft.cpp | 1 - 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index deedfd3..2a2971a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -CXX=clang++-7 -stdlib=libc++ +CXX=clang++-7 CXXFLAGS=-stdlib=libc++ -Wall -O2 -std=c++17 #-march=native -mtune=native # is not better for llvm diff --git a/TODO b/TODO index 1f31ec8..e69de29 100644 --- a/TODO +++ b/TODO @@ -1,3 +0,0 @@ -cooley-tukey -+ reordering -+ symmetry of real inputs diff --git a/fft.cpp b/fft.cpp index 29fd405..42b0acf 100644 --- a/fft.cpp +++ b/fft.cpp @@ -18,7 +18,6 @@ namespace { // Helper functions bool is_power_of_two(unsigned int n) { return n != 0 && (n & (n - 1)) == 0; } - } std::vector RIT::magnitudes(std::vector>& v) { -- cgit v1.2.3