| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
This was previously broken for certain inputs, particularly two
concatenated sorted sequences.
|
|
|
|
|
| |
Previously, we did not correctly handle some cases where a block contained
elements with a uniform value.
|
| |
|
|
|
|
|
| |
Remove unused pending variable, and unused return value from merge(). Saves
29 bytes on x86_64.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
This is a close call. On the one hand, this buffer will get jumbled when
used for merging adjacent blocks, so we'll need to sort it again before
distributing it. On the other hand, by sorting it early, we know that we
won't have to distribute it very far.
In testing, pre-sorting seems to lose out overall.
|
|
|
|
| |
This increases code size, and doesn't seem to help very significantly.
|
| |
|
|
|