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
auto position = std::distance(state_blocks.begin(), state_blocks.end () - keep_size); => 2048
so swap_ranges gets to iterate the whole shebang minus max_count
that said, resize is taking even more time in my measurements depending on deque size
verify_state_blocks()
with a max parameter (added in #1450) is O(n)with 1000000 items in the
state_blocks
deque it takes much more time to do the swap than with 10000 items, given the same "max" parameterThe text was updated successfully, but these errors were encountered: