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