From 7afcfd9a4ab108a7a311288c4f65f5568c942012 Mon Sep 17 00:00:00 2001 From: Ben Jargowsky Date: Tue, 4 Mar 2025 11:38:11 -0500 Subject: [PATCH] Switch back to a default Burn-In of 20% to make sure nothing breaks --- mcmc/MCMCProcessor.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mcmc/MCMCProcessor.cpp b/mcmc/MCMCProcessor.cpp index 493040391..60c0640b1 100644 --- a/mcmc/MCMCProcessor.cpp +++ b/mcmc/MCMCProcessor.cpp @@ -2046,7 +2046,9 @@ void MCMCProcessor::ScanInput() { PrintInfo(); nSteps = Chain->GetMaximum("step"); - SetStepCut(0); + // Set the step cut to be 20% + int cut = nSteps/5; + SetStepCut(cut); } // ****************************