diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 19:20:30 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 19:20:30 -0300 |
commit | 97b41a2627116b8d08f97b77ea64c5488c0d0aaa (patch) | |
tree | 27cbace722c52183dffb05603a2f01e56fc2317e /fourier_integrator.cpp | |
parent | f76714300e08e72de2d3e14d5c3ced2874a94505 (diff) | |
download | code-97b41a2627116b8d08f97b77ea64c5488c0d0aaa.tar.gz code-97b41a2627116b8d08f97b77ea64c5488c0d0aaa.tar.bz2 code-97b41a2627116b8d08f97b77ea64c5488c0d0aaa.zip |
Increase γ slower
Diffstat (limited to 'fourier_integrator.cpp')
-rw-r--r-- | fourier_integrator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fourier_integrator.cpp b/fourier_integrator.cpp index 635fc68..d83fb9d 100644 --- a/fourier_integrator.cpp +++ b/fourier_integrator.cpp @@ -148,7 +148,7 @@ int main(int argc, char* argv[]) { if (it % maxIterations == 0) { if (ΔC < ΔCprev) { - γ = std::min(1.5 * γ, 1.0); + γ = std::min(1.1 * γ, 1.0); } else { γ /= 2; } |