1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* bignum.c (Init_Bignum): rdiv method removed. [ruby-dev:34242]

* complex.c (nucomp_quo): ditto.

* numeric.c (num_rdiv): ditto.

* rational.c (nurat_div): ditto.

* complex.c (nucomp_fdiv): fdiv implementation restored.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15897 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2008-04-03 16:01:16 +00:00
parent 5d6602c44e
commit 228f30be3a
7 changed files with 27 additions and 89 deletions

View file

@ -413,30 +413,6 @@ class Complex_Test < Test::Unit::TestCase
end
end
def test_rdiv
if defined?(Rational) && !Rational.instance_variable_get('@RCS_ID')
c = Complex(1,2)
c2 = Complex(2,3)
assert_equal(Complex(Rational(8,13),Rational(1,13)), c.rdiv(c2))
c = Complex(1.0,2.0)
c2 = Complex(2.0,3.0)
r = c.rdiv(c2)
assert_in_delta(0.615, r.real, 0.001)
assert_in_delta(0.076, r.image, 0.001)
c = Complex(1,2)
c2 = Complex(2,3)
assert_equal(Complex(Rational(1,2),1), c.rdiv(2))
assert_equal(Complex(Rational(1,2),Rational(1)), c / Rational(2))
assert_equal(Complex(Rational(3,2),Rational(3)), c / Rational(2,3))
end
end
def test_fdiv
c = Complex(1,2)
c2 = Complex(2,3)
@ -880,10 +856,10 @@ class Complex_Test < Test::Unit::TestCase
end
if defined?(Rational) && !Rational.instance_variable_get('@RCS_ID')
assert_equal(Rational(1,2), 1.rdiv(2))
assert_equal(Rational(5000000000), 10000000000.rdiv(2))
assert_equal(Rational(1,2), 1.0.rdiv(2))
assert_equal(Rational(1,4), Rational(1,2).rdiv(2))
assert_equal(Rational(1,2), 1.quo(2))
assert_equal(Rational(5000000000), 10000000000.quo(2))
assert_equal(Rational(1,2), 1.0.quo(2))
assert_equal(Rational(1,4), Rational(1,2).quo(2))
assert_equal(Complex(Rational(1,2),Rational(1)), Complex(1,2).quo(2))
end