Commit f257f56
committed
Change loop condition in minRunLength (fixes #33)
For some reason the loop condition in minRunLength was MIN_MERGE=32
while the original CPython implementation uses 64 there. This commit
changes that condition to 2*MIN_MERGE to bring the condition back to 64
at it should probably have been.
Thanks @weeyizhi for identifying and the fix.1 parent 298928c commit f257f56
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
171 | 171 | | |
172 | 172 | | |
173 | 173 | | |
174 | | - | |
| 174 | + | |
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
| |||
0 commit comments