diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:25:51 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:25:51 -0300 |
commit | 1a47e3c171b4f6abbd7032d0e4f618a5b4b0e361 (patch) | |
tree | c954fdf53257b00729a1175dbc26e88ef524094c | |
parent | 8bd5bb83c6163307ff2c0d5f84f767473d71360d (diff) | |
download | code-1a47e3c171b4f6abbd7032d0e4f618a5b4b0e361.tar.gz code-1a47e3c171b4f6abbd7032d0e4f618a5b4b0e361.tar.bz2 code-1a47e3c171b4f6abbd7032d0e4f618a5b4b0e361.zip |
Another sqrt?
-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 6a967b4..3fb9d62 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(sqrt(std::abs(Cₜ[0]))); + μ *= sqrt(sqrt(sqrt(std::abs(Cₜ[0])))); } } |