Re: Euphoria bug
- Posted by Pete Lomax <petelomax at blueyonder.co.uk> Sep 15, 2005
- 566 views
On Thu, 15 Sep 2005 00:39:12 +0100, Pete Lomax <petelomax at blueyonder.co.uk> wrote: >and to my astonishment, it made no difference. What is doubly odd is > > data = s[999][999] > data = s[998][999] > >/DOES/ make it better. Odd, indeed! The other obvious thing to try is: data = s[999][999] data = s[999][998] which still runs dog-slow, so I now think it is a problem in the ref count of s[999], not s[999][999], iyswim. I also just tried len=2, and think I still saw a 50% hit (bicbw), though not (fairly obviously) as bad as (5000%?) reported. Regards, Pete