diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 15:39:25 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-04-19 15:39:25 -0300 |
commit | 376044eec536709f721f81f2702f90293d8b1e09 (patch) | |
tree | f5a9774c2254549aea8253eb34dbf86d9eb828db | |
parent | 00ca38555f905506967180ede7494169102c60cd (diff) | |
download | code-376044eec536709f721f81f2702f90293d8b1e09.tar.gz code-376044eec536709f721f81f2702f90293d8b1e09.tar.bz2 code-376044eec536709f721f81f2702f90293d8b1e09.zip |
Less feedback
-rw-r--r-- | log-fourier_integrator.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index 5dc64ec..4fff7ce 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -132,8 +132,7 @@ int main(int argc, char* argv[]) { it++; } - if (it > 1000) { - std::cerr << "Decreased!" << std::endl; + if (it > 100) { γ = std::max(0.5 * γ, 1e-6); it = 0; } |