diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-11 09:57:47 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-11 09:57:47 -0300 |
commit | 64760613770d32c697ca03030cef5986e550f306 (patch) | |
tree | 2873e226584930ea56c6318175c728221f45541d | |
parent | 20d44bd729ee5f9a4d8542a37131b0ad1aa15c40 (diff) | |
download | code-64760613770d32c697ca03030cef5986e550f306.tar.gz code-64760613770d32c697ca03030cef5986e550f306.tar.bz2 code-64760613770d32c697ca03030cef5986e550f306.zip |
Shrink β more quickly
-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 0dcf49d..99169a4 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -242,7 +242,7 @@ int main(int argc, char* argv[]) { logFourierSave(Cₜ, Rₜ, Ĉₜ, Ȓₜ, p, s, λ, τ₀, β, log2n, Δτ, logShift); if (Ĉₜ[0].real() / Ĉₜ₋₁[0].real() > 2) { - Δβ *= 0.5; + Δβ *= 0.1; } β = std::round(1e6 * (β + Δβ)) / 1e6; |