Bug: right shift (>>) for Bignum?

J

Johan Holmberg

Hi!

I think I have stumbled on a bug in the right shift method on Bignums.
An expression like

(1 - 2**i) >> (i+1)

normally gives a value of -1 (i.e. minus one). But when the shift
amount is near a multiple of 32 (or 64 on 64-bit architectures)
it suddenly gives a value of 0 (i.e. zero) instead.

A unit test demonstrating the problem is given below.
On my IMac running OS-X I get an error when i=31.
I am using Ruby 1.8.5.

--------------------------------
require "test/unit"

class TC_bignum_rshift_bug < Test::Unit::TestCase
def test_rshift_bug
(1..100).each do |i|
assert_equal( -1,
(1 - 2**i) >> (i+1),
"shift steps: #{i}" )
end
end
end
 
J

Johan Holmberg

Sorry for the mail here on Ruby-talk.
My intention was to post this on ruby-core,
where I suppose it belongs.

/Johan Holmberg
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,071
Latest member
MetabolicSolutionsKeto

Latest Threads

Top