diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 13:50:34 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 13:50:34 -0300 |
commit | a53775a6974d5e81f9c4536846ef5279c4d60385 (patch) | |
tree | 84e373adea5383a2ea350f016a4d10968bd5b22a | |
parent | 74b0c4fa129a3a30f10ffb230459e351bedeb751 (diff) | |
download | code-a53775a6974d5e81f9c4536846ef5279c4d60385.tar.gz code-a53775a6974d5e81f9c4536846ef5279c4d60385.tar.bz2 code-a53775a6974d5e81f9c4536846ef5279c4d60385.zip |
Decrease β less agressively
-rw-r--r-- | log-fourier_integrator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index 7967142..9724e38 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -224,7 +224,7 @@ int main(int argc, char* argv[]) { logFourierSave(Cₜ, Rₜ, Ĉₜ, Ȓₜ, p, s, λ, τ₀, β, log2n, Δτ, logShift); if (Ĉₜ[0].real() / Ĉₜ₋₁[0].real() > 1.25) { - Δβ *= 0.1; + Δβ = std::round(1e6 * Δβ / 2) / 1e6; } β = std::round(1e6 * (β + Δβ)) / 1e6; |