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
Since we care about overlap of check_power_ratios, the correct thing to do ought actually to be to read the buffer from start to min(end+1, powers_length), not from start to end, resulting in non-overlapping checks, which is obviously wrong...
Edit: well, iter_chunk seems to handle overlap, but why is overlap correct even for ::computation.rs? Also, I don't understand why this way of handling overlap is correct...
The text was updated successfully, but these errors were encountered:
Since we care about overlap of
check_power_ratios
, the correct thing to do ought actually to be to read the buffer from start to min(end+1, powers_length), not from start to end, resulting in non-overlapping checks, which is obviously wrong...Edit: well, iter_chunk seems to handle overlap, but why is overlap correct even for ::computation.rs? Also, I don't understand why this way of handling overlap is correct...
The text was updated successfully, but these errors were encountered: