2019-12-04 03:16:30 -05:00
|
|
|
#include "internal/rational.h"
|
2013-09-06 08:07:08 -04:00
|
|
|
|
2013-09-08 06:52:52 -04:00
|
|
|
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
2013-09-06 08:07:08 -04:00
|
|
|
static VALUE
|
|
|
|
big(VALUE x)
|
|
|
|
{
|
|
|
|
if (FIXNUM_P(x))
|
|
|
|
return rb_int2big(FIX2LONG(x));
|
|
|
|
if (RB_TYPE_P(x, T_BIGNUM))
|
|
|
|
return x;
|
|
|
|
rb_raise(rb_eTypeError, "can't convert %s to Bignum",
|
|
|
|
rb_obj_classname(x));
|
|
|
|
}
|
2013-09-08 06:52:52 -04:00
|
|
|
#endif
|
2013-09-06 08:07:08 -04:00
|
|
|
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
gcd_normal(VALUE klass, VALUE x, VALUE y)
|
2013-09-06 08:07:08 -04:00
|
|
|
{
|
|
|
|
return rb_big_norm(rb_gcd_normal(rb_to_int(x), rb_to_int(y)));
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(HAVE_LIBGMP) && defined(HAVE_GMP_H)
|
|
|
|
static VALUE
|
2021-01-08 05:07:16 -05:00
|
|
|
gcd_gmp(VALUE klass, VALUE x, VALUE y)
|
2013-09-06 08:07:08 -04:00
|
|
|
{
|
|
|
|
return rb_big_norm(rb_gcd_gmp(big(x), big(y)));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define gcd_gmp rb_f_notimplement
|
|
|
|
#endif
|
|
|
|
|
2020-01-16 20:41:03 -05:00
|
|
|
static VALUE
|
|
|
|
s_rational_raw(VALUE klass, VALUE x, VALUE y)
|
|
|
|
{
|
|
|
|
return rb_rational_raw(x, y);
|
|
|
|
}
|
|
|
|
|
2013-09-06 08:07:08 -04:00
|
|
|
void
|
2021-01-08 05:07:16 -05:00
|
|
|
Init_rational(void)
|
2013-09-06 08:07:08 -04:00
|
|
|
{
|
2021-01-08 05:07:16 -05:00
|
|
|
VALUE mBug = rb_define_module("Bug");
|
|
|
|
VALUE klass = rb_define_module_under(mBug, "Rational");
|
2020-01-16 20:41:03 -05:00
|
|
|
|
2021-01-08 05:07:16 -05:00
|
|
|
rb_define_singleton_method(klass, "gcd_normal", gcd_normal, 2);
|
|
|
|
rb_define_singleton_method(klass, "gcd_gmp", gcd_gmp, 2);
|
|
|
|
|
|
|
|
rb_define_singleton_method(klass, "raw", s_rational_raw, 2);
|
2013-09-06 08:07:08 -04:00
|
|
|
}
|