You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As noted on #1101, if Cmap4Iter sets the start of the range to current.end + 1 this somehow results in klippa integration tests failing. E.g.
// Happyself.cur_range = next_range.start.max(self.cur_range.end)
..next_range.end.max(self.cur_range.end);// Sadself.cur_range = next_range.start.max(self.cur_range.end + 1)// +1: no reason to reprocess the end of the prior range
..next_range.end.max(self.cur_range.end);
Maybe I'm missing something obvious, at a glance this seems like a bug.
The text was updated successfully, but these errors were encountered:
As noted on #1101, if Cmap4Iter sets the start of the range to current.end + 1 this somehow results in klippa integration tests failing. E.g.
Maybe I'm missing something obvious, at a glance this seems like a bug.
The text was updated successfully, but these errors were encountered: