tracer icon indicating copy to clipboard operation
tracer copied to clipboard

replace MAX_LAG = 2000 to the proportion of sample size (chain length)

Open walterxie opened this issue 8 months ago • 0 comments

replace MAX_LAG = 2000 to the proportion of sample size (chain length). Alexei hates the magic number. 😊

final int samples = values.length;
int maxLag = Math.min(samples - 1, MAX_LAG);

walterxie avatar Jun 24 '24 01:06 walterxie