update lua benchmark timing parameters

This commit is contained in:
Alon Zakai 2013-05-24 18:41:33 -07:00
Родитель f4ede5d749
Коммит 4d7413637d
2 изменённых файлов: 15 добавлений и 1 удалений

Просмотреть файл

@ -22,6 +22,20 @@ local function ItemCheck(tree)
end
local N = tonumber(arg and arg[1]) or 0
-- 0-4 logic
if N == 0 then
N = 0
elseif N == 1 then
N = 11
elseif N == 2 then
N = 13
elseif N == 3 then
N = 14
elseif N == 4 then
N = 16
end
local mindepth = 4
local maxdepth = mindepth + 2
if maxdepth < N then maxdepth = N end

Просмотреть файл

@ -1,3 +1,3 @@
#!/bin/sh
lua/src/lua lua/binarytrees.lua
lua/src/lua lua/binarytrees.lua $1