aboutsummaryrefslogtreecommitdiffstats
path: root/lib/complex.rb
blob: 70e168e912d64046df903f4a61064d1a8e8b64b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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