summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaron Kent-Dobias <jaron@kent-dobias.com>2025-05-14 18:05:50 -0300
committerJaron Kent-Dobias <jaron@kent-dobias.com>2025-05-14 18:05:50 -0300
commit64ed806d057eb58c11bc61fa52def63186aa10ee (patch)
treeb6b1b55cb772abf505774ea3c5e896c7584e8afb
parenta53775a6974d5e81f9c4536846ef5279c4d60385 (diff)
downloadcode-64ed806d057eb58c11bc61fa52def63186aa10ee.tar.gz
code-64ed806d057eb58c11bc61fa52def63186aa10ee.tar.bz2
code-64ed806d057eb58c11bc61fa52def63186aa10ee.zip
More feedback, higher threshold for γ reduction by default
-rw-r--r--log-fourier_integrator.cpp6
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);