mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
![tadf](/assets/img/avatar_default.png)
* rational.c: ditto. * bignum.c (rb_big_pow): bignum**bignum - should calculate without rational. * lib/complex.rb: should override Math module at most once. * lib/mathn.rb: requires 'cmath' directly. -この行以下は無視されます -- M complex.c M ChangeLog M lib/mathn.rb M lib/complex.rb M bignum.c M rational.c git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19431 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
12 lines
225 B
Ruby
12 lines
225 B
Ruby
require 'cmath'
|
|
|
|
unless defined?(Math.exp!)
|
|
Object.instance_eval{remove_const :Math}
|
|
Math = CMath
|
|
end
|
|
|
|
def Complex.generic? (other)
|
|
other.kind_of?(Integer) ||
|
|
other.kind_of?(Float) ||
|
|
other.kind_of?(Rational)
|
|
end
|