diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:17:15 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 17:17:15 -0300 | 
| commit | c09c3175b9ce6a916c756d43ff06cb1117669241 (patch) | |
| tree | 6baa30aa64c7bf0247596eb09a40d6f6e2f65772 | |
| parent | 2dbddea11fd7ba06bd8cee7e7e80941eea964e7a (diff) | |
| download | code-c09c3175b9ce6a916c756d43ff06cb1117669241.tar.gz code-c09c3175b9ce6a916c756d43ff06cb1117669241.tar.bz2 code-c09c3175b9ce6a916c756d43ff06cb1117669241.zip | |
Faster 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 44f3b86..f6e5f45 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.001 * γ, 1.0); +          γ = std::min(1.05 * γ, 1.0);          } else {            γ = std::max(0.5 * γ, 1e-3);          } | 
