diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 18:41:00 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-03 18:41:00 -0300 |
commit | f76714300e08e72de2d3e14d5c3ced2874a94505 (patch) | |
tree | 62113982d5ff3e6670c2edb9425321fb9d3f03c5 /fourier_integrator.cpp | |
parent | c62be882352bbb6c164d0c6406784357c046a895 (diff) | |
download | code-f76714300e08e72de2d3e14d5c3ced2874a94505.tar.gz code-f76714300e08e72de2d3e14d5c3ced2874a94505.tar.bz2 code-f76714300e08e72de2d3e14d5c3ced2874a94505.zip |
Increase the rate of γ increase
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 d83fb9d..635fc68 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.1 * γ, 1.0); + γ = std::min(1.5 * γ, 1.0); } else { γ /= 2; } |