mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 10:03:59 +02:00
merge revision(s) 49913,54492,54494,54495,54496,54499,54503: [Backport #12249]
math.c: fix tgamma on mingw * math.c (mingw_tgamma): tgamma(3) on mingw returns a NaN for a big number, not infinity. * math.c (ruby_tgamma): fix tgamma(-0.0) on mingw. [ruby-core:74817] [Bug #12249] * math.c (ruby_lgamma_r): fix lgamma(-0.0) on mingw and OSX. * math.c (ruby_lgamma_r): mswin's lgamma_r also seems to be wrong. cf. [Bug #12249] * math.c (ruby_lgamma_r): missing/lgamma_r.c is used on Windows, since msvcrt does not provide it. * missing/lgamma_r.c (lgamma_r): fix lgamma(-0.0). [ruby-core:74823] [Bug #12249] * configure.in (rb_cv_lgamma_r_m0): check if lgamma_r(-0.0) returns negative infinity. [Bug #12249] * math.c (ruby_lgamma_r): define by the configured result. * configure.in (rb_cv_lgamma_r_m0): fix the condition for lgamma_r(-0.0). [Bug #12249] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@54687 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e102f56340
commit
4eba344517
6 changed files with 108 additions and 2 deletions
32
math.c
32
math.c
|
@ -774,6 +774,38 @@ math_erfc(VALUE obj, VALUE x)
|
|||
return DBL2NUM(erfc(RFLOAT_VALUE(x)));
|
||||
}
|
||||
|
||||
#if defined __MINGW32__
|
||||
static inline double
|
||||
ruby_tgamma(const double d)
|
||||
{
|
||||
const double g = tgamma(d);
|
||||
if (isinf(g)) {
|
||||
if (d == 0.0 && signbit(d)) return -INFINITY;
|
||||
}
|
||||
if (isnan(g)) {
|
||||
if (!signbit(d)) return INFINITY;
|
||||
}
|
||||
return g;
|
||||
}
|
||||
#define tgamma(d) ruby_tgamma(d)
|
||||
#endif
|
||||
|
||||
#if defined LGAMMA_R_M0_FIX
|
||||
static inline double
|
||||
ruby_lgamma_r(const double d, int *sign)
|
||||
{
|
||||
const double g = lgamma_r(d, sign);
|
||||
if (isinf(g)) {
|
||||
if (d == 0.0 && signbit(d)) {
|
||||
*sign = -1;
|
||||
return INFINITY;
|
||||
}
|
||||
}
|
||||
return g;
|
||||
}
|
||||
#define lgamma_r(d, sign) ruby_lgamma_r(d, sign)
|
||||
#endif
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* Math.gamma(x) -> Float
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue