From f24d5aba4aea1a3c1f6f600bd745a277f12f1b78 Mon Sep 17 00:00:00 2001 From: mame Date: Sun, 14 Dec 2008 03:59:02 +0000 Subject: * bignum.c (rb_big_mul): faster multiplication by Karatsuba method and twice faster square than normal multiplication. * random.c (rb_rand_internal): used by Bignum#*. * test/ruby/test_bignum.rb: add some tests for above. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20733 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 33faf8890..9c192c232 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +日 12月 14 12:51:48 2008 Yusuke Endoh + + * bignum.c (rb_big_mul): faster multiplication by Karatsuba method and + twice faster square than normal multiplication. + + * random.c (rb_rand_internal): used by Bignum#*. + + * test/ruby/test_bignum.rb: add some tests for above. + Sun Dec 14 09:14:37 2008 Yuki Sonoda (Yugui) * reverts r20713. -- cgit