diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-10 11:36:50 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-10 11:36:50 -0300 |
commit | 484fcc7097b6099585975a8fb0c4fab14a213e81 (patch) | |
tree | bb438b3ff3024893a75df93654f21ce2f9f8cf62 /log-fourier.cpp | |
parent | 0d4405e9a3d89768ab104c6c8f5b7b83078fb63c (diff) | |
download | code-484fcc7097b6099585975a8fb0c4fab14a213e81.tar.gz code-484fcc7097b6099585975a8fb0c4fab14a213e81.tar.bz2 code-484fcc7097b6099585975a8fb0c4fab14a213e81.zip |
Don't excise anything
Diffstat (limited to 'log-fourier.cpp')
-rw-r--r-- | log-fourier.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log-fourier.cpp b/log-fourier.cpp index 5b7964d..e60439a 100644 --- a/log-fourier.cpp +++ b/log-fourier.cpp @@ -203,7 +203,7 @@ Real energy(const LogarithmicFourierTransform& fft, std::vector<Real>& C, const Real C₂ₙ₊₁ = C[2*n+1]; Real C₂ₙ₊₂ = C[2*n+2]; - if (C₂ₙ₊₂ < 0 || R₂ₙ₊₂ < 0) break; + //if (C₂ₙ₊₂ < 0 || R₂ₙ₊₂ < 0) break; Real h₂ₙ = fft.t(2*n+1) - fft.t(2*n); Real h₂ₙ₊₁ = fft.t(2*n+2) - fft.t(2*n+1); |