diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:17:40 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:17:40 -0300 |
commit | 8bd5bb83c6163307ff2c0d5f84f767473d71360d (patch) | |
tree | f598ae133044935a4d7d7e6c1988527628f6039d | |
parent | 21d06f80a9584cfc7a95420991d8467e1f24359f (diff) | |
download | code-8bd5bb83c6163307ff2c0d5f84f767473d71360d.tar.gz code-8bd5bb83c6163307ff2c0d5f84f767473d71360d.tar.bz2 code-8bd5bb83c6163307ff2c0d5f84f767473d71360d.zip |
More tweaks
-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 f5dbfc7..6a967b4 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -143,7 +143,7 @@ int main(int argc, char* argv[]) { if (std::abs(Cₜ[0] - 1) < ε) { break; } else { - μ *= sqrt(Cₜ[0]); + μ *= sqrt(sqrt(std::abs(Cₜ[0]))); } } |