diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:40:13 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:40:13 -0300 |
commit | b85b401c30234f76f4ba914063aa35cfe4df7a1a (patch) | |
tree | 3f3f7f5afbc773d1edebe2f3654019f5376e5693 | |
parent | ee0e503b23b9651824ff70216e6d43abc59aa81d (diff) | |
download | code-b85b401c30234f76f4ba914063aa35cfe4df7a1a.tar.gz code-b85b401c30234f76f4ba914063aa35cfe4df7a1a.tar.bz2 code-b85b401c30234f76f4ba914063aa35cfe4df7a1a.zip |
Make μ start a little smaller
-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 93f25e3..3562e4e 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -88,7 +88,7 @@ int main(int argc, char* argv[]) { Real β = 0; while (β < βₘₐₓ) { β += Δβ; - Real μ₁ = μ - ε; + Real μ₁ = μ - 1e-3; Real μ₂ = 0; while (true) { Real ΔC = 100; |