Skip to content

Commit

Permalink
Switch back to a default Burn-In of 20% to make sure nothing breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
BenJarg committed Mar 4, 2025
1 parent d35ee83 commit 7afcfd9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mcmc/MCMCProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

// ****************************
Expand Down

0 comments on commit 7afcfd9

Please sign in to comment.