зеркало из https://github.com/github/ruby.git
* ext/bigdecimal/bigdecimal.c (BigDecimal_divide): Add an additional
digit for the quotient to be compatible with bigdecimal 1.2.1 and the former. [ruby-core:59365] [#9316] [#9305] * test/bigdecimal/test_bigdecimal.rb: tests for the above change. * ext/bigdecimal/bigdecimal.gemspec: bigdecimal version 1.2.4. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44588 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
b2e85cbdf4
Коммит
e7fe5648cf
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
Tue Jan 14 02:20:00 2014 Kenta Murata <mrkn@mrkn.jp>
|
||||
|
||||
* ext/bigdecimal/bigdecimal.c (BigDecimal_divide): Add an additional
|
||||
digit for the quotient to be compatible with bigdecimal 1.2.1 and
|
||||
the former. [ruby-core:59365] [#9316] [#9305]
|
||||
|
||||
* test/bigdecimal/test_bigdecimal.rb: tests for the above change.
|
||||
|
||||
* ext/bigdecimal/bigdecimal.gemspec: bigdecimal version 1.2.4.
|
||||
|
||||
Mon Jan 13 14:55:31 2014 Zachary Scott <e@zzak.io>
|
||||
|
||||
* lib/xmlrpc/client.rb: [DOC] Remove note about SSL package on RAA
|
||||
|
|
|
@ -1222,8 +1222,10 @@ BigDecimal_divide(Real **c, Real **res, Real **div, VALUE self, VALUE r)
|
|||
|
||||
*div = b;
|
||||
mx = a->Prec + vabs(a->exponent);
|
||||
if (mx<b->Prec + vabs(b->exponent)) mx = b->Prec + vabs(b->exponent);
|
||||
mx =(mx + 1) * VpBaseFig();
|
||||
if (mx < b->Prec + vabs(b->exponent)) mx = b->Prec + vabs(b->exponent);
|
||||
mx++; /* NOTE: An additional digit is needed for the compatibility to
|
||||
the version 1.2.1 and the former. */
|
||||
mx = (mx + 1) * VpBaseFig();
|
||||
GUARD_OBJ((*c), VpCreateRbObject(mx, "#0"));
|
||||
GUARD_OBJ((*res), VpCreateRbObject((mx+1) * 2 +(VpBaseFig() + 1), "#0"));
|
||||
VpDivd(*c, *res, a, b);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
# -*- ruby -*-
|
||||
_VERSION = "1.2.3"
|
||||
_VERSION = "1.2.4"
|
||||
date = %w$Date:: $[1]
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
|
|
|
@ -701,6 +701,10 @@ class TestBigDecimal < Test::Unit::TestCase
|
|||
assert_equal(BigDecimal::SIGN_NEGATIVE_ZERO, (BigDecimal.new("-0") / 1).sign)
|
||||
assert_equal(2, BigDecimal.new("2") / 1)
|
||||
assert_equal(-2, BigDecimal.new("2") / -1)
|
||||
|
||||
assert_equal(BigDecimal('1486.868686869'), BigDecimal('1472.0') / BigDecimal('0.99'), '[ruby-core:59365] [#9316]')
|
||||
|
||||
assert_equal(4.124045235, BigDecimal('0.9932') / (700 * BigDecimal('0.344045') / BigDecimal('1000.0')), '[#9305]')
|
||||
end
|
||||
|
||||
def test_div_with_float
|
||||
|
|
Загрузка…
Ссылка в новой задаче