diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 18:05:50 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-05-14 18:05:50 -0300 |
commit | 64ed806d057eb58c11bc61fa52def63186aa10ee (patch) | |
tree | b6b1b55cb772abf505774ea3c5e896c7584e8afb /log-fourier_integrator.cpp | |
parent | a53775a6974d5e81f9c4536846ef5279c4d60385 (diff) | |
download | code-64ed806d057eb58c11bc61fa52def63186aa10ee.tar.gz code-64ed806d057eb58c11bc61fa52def63186aa10ee.tar.bz2 code-64ed806d057eb58c11bc61fa52def63186aa10ee.zip |
More feedback, higher threshold for γ reduction by default
Diffstat (limited to 'log-fourier_integrator.cpp')
-rw-r--r-- | log-fourier_integrator.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/log-fourier_integrator.cpp b/log-fourier_integrator.cpp index 9724e38..b2a16af 100644 --- a/log-fourier_integrator.cpp +++ b/log-fourier_integrator.cpp @@ -23,7 +23,7 @@ int main(int argc, char* argv[]) { Real βₘₐₓ = 20; Real Δβ = 0.01; bool loadData = false; - unsigned stepsToRespond = 1e2; + unsigned stepsToRespond = 1e5; unsigned pad = 2; int opt; @@ -203,7 +203,7 @@ int main(int argc, char* argv[]) { } std::cerr << "\x1b[2K" << "\r"; - std::cerr << β << " " << μₜ << " " << ΔCₜ; + std::cerr << β << " " << Δβ << " " << μₜ << " " << ΔCₜ << " " << γ; } if (std::isnan(Cₜ[0])) { @@ -219,7 +219,7 @@ int main(int argc, char* argv[]) { Real E = energy(fft, Cₜ, Rₜ, p, s, λ, β); std::cerr << "\x1b[2K" << "\r"; - std::cerr << β << " " << μₜ << " " << Ĉₜ[0].real() << " " << E << std::endl; + std::cerr << β << " " << Δβ << " " << μₜ << " " << Ĉₜ[0].real() << " " << E << std::endl; logFourierSave(Cₜ, Rₜ, Ĉₜ, Ȓₜ, p, s, λ, τ₀, β, log2n, Δτ, logShift); |