File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -465,9 +465,13 @@ function mcmcsample(
465
465
466
466
@withprogresslogger begin
467
467
if progress == :perchain
468
- # This is the 'overall' progress bar. We create a channel for each
469
- # chain to report back to when it finishes sampling.
468
+ # Create a channel for each chain to report back to when it
469
+ # finishes sampling.
470
470
progress_channel = Channel {Bool} (nchunks)
471
+ # This is the 'overall' progress bar which tracks the number of
472
+ # chains that have completed. Note that this progress bar is backed
473
+ # by a channel, but it is not itself a ChannelProgress (because
474
+ # ChannelProgress doesn't come with a progress bar).
471
475
overall_progress_bar = CreateNewProgressBar (progressname)
472
476
init_progress (overall_progress_bar)
473
477
# These are the per-chain progress bars. We generate `nchains`
You can’t perform that action at this time.
0 commit comments