lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On 26 November 2015 at 04:31, Luiz Henrique de Figueiredo
<lhf@tecgraf.puc-rio.br> wrote:
> The diffs are also available in unified format:
>         http://www.lua.org/work/diffu-lua-5.3.2-rc1-rc2.txt
>         http://www.lua.org/work/diffu-lua-5.3.2-rc1-rc2.html
>
> All feedback welcome. Thanks.
> --lhf

I noticed you decreased the maximum array size for sort from 2^50 to
2^40 elements.
This actually brings it into range of real life operations. (it's not
unheard of to have 46bits of addressable memory now).
Though a single threaded sort operation might take a long time with
that much data,
Imagine the disappointment when your multi-month sort overruns your stack ;)

Was there any reason to move this down from 50 to 40?