[前][次][番号順一覧][スレッド一覧]

ruby-changes:20854

From: mrkn <ko1@a...>
Date: Wed, 10 Aug 2011 19:37:52 +0900 (JST)
Subject: [ruby-changes:20854] mrkn:r32903 (trunk): * complex.c (nucomp_rationalize): calls rationalize of real part if

mrkn	2011-08-10 19:35:08 +0900 (Wed, 10 Aug 2011)

  New Revision: 32903

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=32903

  Log:
    * complex.c (nucomp_rationalize): calls rationalize of real part if
      imaginary part is exactly zero.  The patch is made by Marc-Andre
      Lafortune.  fixes [Bug #5178] [ruby-core:38885]
    * test/ruby/test_complex.rb (test_rationalize): add a test for the
      above change.
    * complex.c (nucomp_to_r): fix RDoc comment.  The patch is made by
      Marc-Andre Lafortune.

  Modified files:
    trunk/ChangeLog
    trunk/complex.c
    trunk/test/ruby/test_complex.rb

Index: complex.c
===================================================================
--- complex.c	(revision 32902)
+++ complex.c	(revision 32903)
@@ -1339,7 +1339,8 @@
  * call-seq:
  *    cmp.to_r  ->  rational
  *
- * Returns the value as a rational if possible.
+ * If the imaginary part is exactly 0, returns the real part as a Rational,
+ * otherwise a RangeError is raised.
  */
 static VALUE
 nucomp_to_r(VALUE self)
@@ -1358,14 +1359,22 @@
  * call-seq:
  *    cmp.rationalize([eps])  ->  rational
  *
- * Returns the value as a rational if possible.  An optional argument
- * eps is always ignored.
+ * If the imaginary part is exactly 0, returns the real part as a Rational,
+ * otherwise a RangeError is raised.
  */
 static VALUE
 nucomp_rationalize(int argc, VALUE *argv, VALUE self)
 {
+    get_dat1(self);
+
     rb_scan_args(argc, argv, "01", NULL);
-    return nucomp_to_r(self);
+
+    if (k_inexact_p(dat->imag) || f_nonzero_p(dat->imag)) {
+       VALUE s = f_to_s(self);
+       rb_raise(rb_eRangeError, "can't convert %s into Rational",
+                StringValuePtr(s));
+    }
+    return rb_funcall(dat->real, rb_intern("rationalize"), argc, argv);
 }
 
 /*
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 32902)
+++ ChangeLog	(revision 32903)
@@ -1,3 +1,15 @@
+Wed Aug 10 19:30:00 2011  Kenta Murata  <mrkn@m...>
+
+	* complex.c (nucomp_rationalize): calls rationalize of real part if
+	  imaginary part is exactly zero.  The patch is made by Marc-Andre
+	  Lafortune.  fixes [Bug #5178] [ruby-core:38885]
+
+	* test/ruby/test_complex.rb (test_rationalize): add a test for the
+	  above change.
+
+	* complex.c (nucomp_to_r): fix RDoc comment.  The patch is made by
+	  Marc-Andre Lafortune.
+
 Wed Aug 10 14:11:07 2011  Nobuyoshi Nakada  <nobu@r...>
 
 	* lib/mkmf.rb (init_mkmf): set $LIBRUBYARG regardless of shared
Index: test/ruby/test_complex.rb
===================================================================
--- test/ruby/test_complex.rb	(revision 32902)
+++ test/ruby/test_complex.rb	(revision 32903)
@@ -13,6 +13,11 @@
     @unify = $".grep(/(?:^|#{seps})mathn(?:\.(?:rb|so))?/).size != 0
   end
 
+  def test_rationalize
+    assert_equal(1.quo(3), Complex(1/3.0, 0).rationalize, '[ruby-core:38885]')
+    assert_equal(1.quo(5), Complex(0.2, 0).rationalize, '[ruby-core:38885]')
+  end
+
   def test_compsub
     c = ComplexSub.__send__(:convert, 1)
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]