diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:18:35 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:18:35 -0300 |
commit | 27f381cf07880cfbae0aad3295579d305a11e424 (patch) | |
tree | ca3b146dfa08f5ca88cebf8ae6db67bd7562f206 | |
parent | c09c3175b9ce6a916c756d43ff06cb1117669241 (diff) | |
download | code-27f381cf07880cfbae0aad3295579d305a11e424.tar.gz code-27f381cf07880cfbae0aad3295579d305a11e424.tar.bz2 code-27f381cf07880cfbae0aad3295579d305a11e424.zip |
Slower step-size build-up
-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 f6e5f45..7b689f1 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -130,7 +130,7 @@ int main(int argc, char* argv[]) { if (ΔC < ΔC₀) { ΔC₀ = ΔC; - γ = std::min(1.05 * γ, 1.0); + γ = std::min(1.01 * γ, 1.0); } else { γ = std::max(0.5 * γ, 1e-3); } |