summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-19 16:49:09 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-04-19 16:49:09 -0300
commit497b322d3c36d171166e9d09925fc6ca73ec8245 (patch)
tree1cde7d36291aa4813f2038e7ee6ec48eb0fda07b
parent8a3a0e60fb348bc2f5629e746cbdfcb96570aaef (diff)
downloadcode-497b322d3c36d171166e9d09925fc6ca73ec8245.tar.gz
code-497b322d3c36d171166e9d09925fc6ca73ec8245.tar.bz2
code-497b322d3c36d171166e9d09925fc6ca73ec8245.zip
More tweaks
-rw-r--r--log-fourier_integrator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp
index 6ebd474..7736be8 100644
--- a/log-fourier_integrator.cpp
+++ b/log-fourier_integrator.cpp
@@ -86,11 +86,11 @@ int main(int argc, char* argv[]) {
}
Real β = 0;
- μ -= 1e-2;
while (β < βₘₐₓ) {
β += Δβ;
- Real μ₁ = μ;
+ Real μ₁ = μ * 0.99;
Real μ₂ = 0;
+ μ *= 1.01;
while (true) {
Real ΔC = 100;
Real ΔC₀ = 100;