For the current Structural Break Real-Time competition, may `infer()` maintain a **forward-only summary of series that have already been completely processed** and use that summary when scoring later series?
The proposed state would:
- run with parallelism 1;
- contain only clean-history summaries and prediction trajectories from previously completed test series;
- never use test labels, data files, a future point of the current series, or the current series’ final horizon;
- yield each prediction before consuming the next online point; and
- never revise any earlier prediction.
Or must every series’ predictions be independent of all other test series?
If forward-only cross-series state is allowed, is the series order guaranteed to be stable/deterministic in public and out-of-sample scoring?