aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rational.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rational.rb')
-rw-r--r--lib/rational.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/rational.rb b/lib/rational.rb
index f4570bd306..2241004852 100644
--- a/lib/rational.rb
+++ b/lib/rational.rb
@@ -37,7 +37,6 @@
#
def Rational(a, b = 1)
- p [:Rational, a, b]
if a.kind_of?(Rational) && b == 1
a
else
@@ -55,13 +54,9 @@ class Rational < Numeric
num = -num
den = -den
end
- p [:reduce, num, den]
gcd = num.gcd(den)
- p [:div1, num, num.class, gcd]
num = num.div(gcd)
- p [:div2, den, gcd]
den = den.div(gcd)
- p [:gcd=, gcd]
if den == 1 && defined?(Unify)
num
else
@@ -338,7 +333,6 @@ end
class Fixnum
undef quo
def quo(other)
- p [:quo, self, other]
Rational.new!(self,1) / other
end
alias rdiv quo