diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:39:42 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:39:42 -0300 | 
| commit | ee0e503b23b9651824ff70216e6d43abc59aa81d (patch) | |
| tree | d258d191dc342075f1a7671db4360b620a25ecf2 | |
| parent | 1e8da9cdc0efdd675ca7e8e7b4eade7a2d7aa211 (diff) | |
| download | code-ee0e503b23b9651824ff70216e6d43abc59aa81d.tar.gz code-ee0e503b23b9651824ff70216e6d43abc59aa81d.tar.bz2 code-ee0e503b23b9651824ff70216e6d43abc59aa81d.zip | |
Make μ start a little small
| -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 67ec7b4..93f25e3 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 μ₁ = μ - ε;      Real μ₂ = 0;      while (true) {        Real ΔC = 100; | 
