Skip to content

Extreme slowdown with named vectors. A bug? (PR#9280)

1 message · Duncan Murdoch

#
On 10/6/2006 6:20 PM, Henrik Bengtsson wrote:
I see a similar effect to what you're describing.  I also see it in 
2.3.1, so it's not a new bug.

I tracked it down to an overflow occurring in the stringSubscript 
function in src/main/subscript.c:  at the beginning there's a test

ns * nx > 1000

When ns and nx are both large, the product overflows and becomes 
negative.  I'll see if I can fix it.

Duncan Murdoch