diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:49:09 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:49:09 -0300 |
commit | 497b322d3c36d171166e9d09925fc6ca73ec8245 (patch) | |
tree | 1cde7d36291aa4813f2038e7ee6ec48eb0fda07b | |
parent | 8a3a0e60fb348bc2f5629e746cbdfcb96570aaef (diff) | |
download | code-497b322d3c36d171166e9d09925fc6ca73ec8245.tar.gz code-497b322d3c36d171166e9d09925fc6ca73ec8245.tar.bz2 code-497b322d3c36d171166e9d09925fc6ca73ec8245.zip |
More tweaks
-rw-r--r-- | log-fourier_integrator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index 6ebd474..7736be8 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -86,11 +86,11 @@ int main(int argc, char* argv[]) { } Real β = 0; - μ -= 1e-2; while (β < βₘₐₓ) { β += Δβ; - Real μ₁ = μ; + Real μ₁ = μ * 0.99; Real μ₂ = 0; + μ *= 1.01; while (true) { Real ΔC = 100; Real ΔC₀ = 100; |