diff options
| author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:02:02 -0300 | 
|---|---|---|
| committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 16:02:02 -0300 | 
| commit | 78edd06a69e85da5a448425f12caa4b6b6c80379 (patch) | |
| tree | 9b6ed5c9f688b2c8c5bf948562b91ea42bdd9dd0 | |
| parent | 777bd99797816077b8af786beb4b666485dd3728 (diff) | |
| download | code-78edd06a69e85da5a448425f12caa4b6b6c80379.tar.gz code-78edd06a69e85da5a448425f12caa4b6b6c80379.tar.bz2 code-78edd06a69e85da5a448425f12caa4b6b6c80379.zip | |
Slower μ steps
| -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 94987f3..f5dbfc7 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 { -        μ *= Cₜ[0]; +        μ *= sqrt(Cₜ[0]);        }      } | 
