Skip to content

Commit

Permalink
Changed nlookback to 14
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruggen authored Jul 5, 2024
1 parent acb6d03 commit bae0ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tracers/tracers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ std::shared_ptr<StateDescriptor> Initialize(ParameterInput *pin) {
// MARCUS AND EVAN LOOK
// Number of lookback times to be stored (in powers of 2,
// i.e., 12 allows to go from 0, 2^0 = 1, 2^1 = 2, 2^2 = 4, ..., 2^10 = 1024 cycles)
const int n_lookback = 12; // could even be made an input parameter if required/desired
const int n_lookback = 14; // could even be made an input parameter if required/desired
// (though it should probably not be changeable for restarts)
tracer_pkg->AddParam("n_lookback", n_lookback);
// Using a vector to reduce code duplication.
Expand Down

0 comments on commit bae0ce0

Please sign in to comment.