diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:29:24 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:29:24 -0300 |
commit | bdc63b30692371bab774c09d9f7e27dcd98bd34e (patch) | |
tree | a1c0cf62ba2811456940ca71ae4476af8aea096d | |
parent | cf90ba82e35c4d8578825c72876ee739b2e8d95d (diff) | |
download | code-bdc63b30692371bab774c09d9f7e27dcd98bd34e.tar.gz code-bdc63b30692371bab774c09d9f7e27dcd98bd34e.tar.bz2 code-bdc63b30692371bab774c09d9f7e27dcd98bd34e.zip |
Tweaks
-rw-r--r-- | log-fourier_integrator.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index ca378bb..bc99789 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -156,8 +156,9 @@ int main(int argc, char* argv[]) { Rₜ = Rₜ₋₁; Ĉₜ = Ĉₜ₋₁; Ȓₜ = Ȓₜ₋₁; - Δβ /= 2; β -= Δβ; + Δβ /= 2; + break; } else { if (pow(Cₜ[0] - 1, 2) < ε) { break; |