diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 15:54:59 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 15:54:59 -0300 | 
| commit | 2b1ef77a7d778d69561060f0ac6040b9a05ae528 (patch) | |
| tree | b221f49827883e1332c785f3557f575ffc14ef73 | |
| parent | 29bf9c1a4cdc0a32898dee28766843e5d0683ddc (diff) | |
| download | code-2b1ef77a7d778d69561060f0ac6040b9a05ae528.tar.gz code-2b1ef77a7d778d69561060f0ac6040b9a05ae528.tar.bz2 code-2b1ef77a7d778d69561060f0ac6040b9a05ae528.zip | |
Raised minimum step size
| -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 97201cf..7569245 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -133,7 +133,7 @@ int main(int argc, char* argv[]) {        }        if (it > 100) { -        γ = std::max(0.5 * γ, 1e-6); +        γ = std::max(0.5 * γ, 1e-3);          it = 0;          ΔC₀ = ΔC;        } | 
