[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Table generation issue
- From: roberto@... (Roberto Ierusalimschy)
- Date: Tue, 21 Nov 2006 16:51:32 -0200
> Unfortunately, my timing runs show that your
> suggestion makes no measurable difference. Any other
> suggestions would be welcomed.
If you suspect of table creation, it seems easy to remove those
operations and see what happens. That is, instead of
subTableBlock = {Number=data[i][2],Dup=data[i][3]}
you can simply do
subTableBlock = true
Of course the program will not work properly, but you can abort it
after that function. This technique may help you to find what is
the real bottleneck.
-- Roberto