diff options
-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; |