Class: Rational
  
  
  
  Instance Attribute Summary collapse
  
  
    
      Class Method Summary
      collapse
    
    
  
    
      Instance Method Summary
      collapse
    
    
  
  
  
  
  
  
  
  
  
  Methods inherited from Numeric
  #%, #+@, #-@, #__coerced__, #abs2, #angle, #clone, #conj, #div, #divmod, #dup, #fdiv, #i, #imag, #integer?, #negative?, #nonzero?, #polar, #positive?, #real, #real?, #rect, #to_c, #to_int, #zero?
  
  
  
  
  
  
  
  
  Methods included from Comparable
  #<, #<=, #>, #>=, #between?, #clamp, normalize
  Constructor Details
  
    
  
  
    #initialize(num, den)  ⇒ Rational 
  
  
  
  
    Returns a new instance of Rational
   
 
  
  
    | 
50
51
52
53 | # File 'opal/opal/corelib/rational.rb', line 50
def initialize(num, den)
  @num = num
  @den = den
end | 
 
  
 
  
    Instance Attribute Details
    
      
      
      
  
  
    #denominator  ⇒ Object  
  
  
  
  
    Returns the value of attribute denominator
   
 
  
  
    | 
48
49
50 | # File 'opal/opal/corelib/rational.rb', line 48
def denominator
  @denominator
end | 
 
    
      
      
      
  
  
    #numerator  ⇒ Object  
  
  
  
  
    Returns the value of attribute numerator
   
 
  
  
    | 
48
49
50 | # File 'opal/opal/corelib/rational.rb', line 48
def numerator
  @numerator
end | 
 
    
   
  
    Class Method Details
    
      
  
  
    .convert(num, den)  ⇒ Object 
  
  
  
  
    | 
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46 | # File 'opal/opal/corelib/rational.rb', line 22
def self.convert(num, den)
  if num.nil? || den.nil?
    raise TypeError, "cannot convert nil into Rational"
  end
  if Integer === num && Integer === den
    return reduce(num, den)
  end
  if Float === num || String === num || Complex === num
    num = num.to_r
  end
  if Float === den || String === den || Complex === den
    den = den.to_r
  end
  if den.equal?(1) && !(Integer === num)
    Opal.coerce_to!(num, Rational, :to_r)
  elsif Numeric === num && Numeric === den
    num / den
  else
    reduce(num, den)
  end
end | 
 
    
      
  
  
    .reduce(num, den)  ⇒ Object 
  
  
  
  
    | 
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 | # File 'opal/opal/corelib/rational.rb', line 4
def self.reduce(num, den)
  num = num.to_i
  den = den.to_i
  if den == 0
    raise ZeroDivisionError, "divided by 0"
  elsif den < 0
    num = -num
    den = -den
  elsif den == 1
    return new(num, den)
  end
  gcd = num.gcd(den)
  new(num / gcd, den / gcd)
end | 
 
    
   
  
    Instance Method Details
    
      
  
  
    | 
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163 | # File 'opal/opal/corelib/rational.rb', line 146
def *(other)
  case other
  when Rational
    num = @num * other.numerator
    den = @den * other.denominator
    Rational(num, den)
  when Integer
    Rational(@num * other, @den)
  when Float
    to_f * other
  else
    __coerced__ :*, other
  end
end | 
 
    
      
  
  
    #**(other)  ⇒ Object 
  
  
  
  
    | 
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222 | # File 'opal/opal/corelib/rational.rb', line 188
def **(other)
  case other
  when Integer
    if self == 0 && other < 0
      return Float::INFINITY
    elsif other > 0
      Rational(@num ** other, @den ** other)
    elsif other < 0
      Rational(@den ** -other, @num ** -other)
    else
      Rational(1, 1)
    end
  when Float
    to_f ** other
  when Rational
    if other == 0
      Rational(1, 1)
    elsif other.denominator == 1
      if other < 0
        Rational(@den ** other.numerator.abs, @num ** other.numerator.abs)
      else
        Rational(@num ** other.numerator, @den ** other.numerator)
      end
    elsif self == 0 && other < 0
      raise ZeroDivisionError, "divided by 0"
    else
      to_f ** other
    end
  else
    __coerced__ :**, other
  end
end | 
 
    
      
  
  
    | 
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125 | # File 'opal/opal/corelib/rational.rb', line 108
def +(other)
  case other
  when Rational
    num = @num * other.denominator + @den * other.numerator
    den = @den * other.denominator
    Rational(num, den)
  when Integer
    Rational(@num + other * @den, @den)
  when Float
    to_f + other
  else
    __coerced__ :+, other
  end
end | 
 
    
      
  
  
    | 
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144 | # File 'opal/opal/corelib/rational.rb', line 127
def -(other)
  case other
  when Rational
    num = @num * other.denominator - @den * other.numerator
    den = @den * other.denominator
    Rational(num, den)
  when Integer
    Rational(@num - other * @den, @den)
  when Float
    to_f - other
  else
    __coerced__ :-, other
  end
end | 
 
    
      
  
  
    #/(other)  ⇒ Object 
  
  
    Also known as:
    divide, quo
    
  
  
  
    | 
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186 | # File 'opal/opal/corelib/rational.rb', line 165
def /(other)
  case other
  when Rational
    num = @num * other.denominator
    den = @den * other.numerator
    Rational(num, den)
  when Integer
    if other == 0
      to_f / 0.0
    else
      Rational(@num, @den * other)
    end
  when Float
    to_f / other
  else
    __coerced__ :/, other
  end
end | 
 
    
      
  
  
    #<=>(other)  ⇒ Object 
  
  
  
  
    | 
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106 | # File 'opal/opal/corelib/rational.rb', line 92
def <=>(other)
  case other
  when Rational
    @num * other.denominator - @den * other.numerator <=> 0
  when Integer
    @num - @den * other <=> 0
  when Float
    to_f <=> other
  else
    __coerced__ :<=>, other
  end
end | 
 
    
      
  
  
    #==(other)  ⇒ Object 
  
  
  
  
    | 
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90 | # File 'opal/opal/corelib/rational.rb', line 76
def ==(other)
  case other
  when Rational
    @num == other.numerator && @den == other.denominator
  when Integer
    @num == other && @den == 1
  when Float
    to_f == other
  else
    other == self
  end
end | 
 
    
      
  
  
    | 
224
225
226 | # File 'opal/opal/corelib/rational.rb', line 224
def abs
  Rational(@num.abs, @den.abs)
end | 
 
    
      
  
  
    #ceil(precision = 0)  ⇒ Object 
  
  
  
  
    | 
228
229
230
231
232
233
234 | # File 'opal/opal/corelib/rational.rb', line 228
def ceil(precision = 0)
  if precision == 0
    (-(-@num / @den)).ceil
  else
    with_precision(:ceil, precision)
  end
end | 
 
    
      
  
  
    #coerce(other)  ⇒ Object 
  
  
  
  
    | 
63
64
65
66
67
68
69
70
71
72
73
74 | # File 'opal/opal/corelib/rational.rb', line 63
def coerce(other)
  case other
  when Rational
    [other, self]
  when Integer
    [other.to_r, self]
  when Float
    [other, to_f]
  end
end | 
 
    
      
  
  
    #floor(precision = 0)  ⇒ Object 
  
  
  
  
    | 
238
239
240
241
242
243
244 | # File 'opal/opal/corelib/rational.rb', line 238
def floor(precision = 0)
  if precision == 0
    (-(-@num / @den)).floor
  else
    with_precision(:floor, precision)
  end
end | 
 
    
      
  
  
    | 
246
247
248 | # File 'opal/opal/corelib/rational.rb', line 246
def hash
  "Rational:#@num:#@den"
end | 
 
    
      
  
  
    | 
250
251
252 | # File 'opal/opal/corelib/rational.rb', line 250
def inspect
  "(#{to_s})"
end | 
 
    
      
  
  
    #rationalize(eps = undefined)  ⇒ Object 
  
  
  
  
    | 
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300 | # File 'opal/opal/corelib/rational.rb', line 256
def rationalize(eps = undefined)
  %x{
    if (arguments.length > 1) {
      #{raise ArgumentError, "wrong number of arguments (#{`arguments.length`} for 0..1)"};
    }
    if (eps == null) {
      return self;
    }
    var e = #{eps.abs},
        a = #{self - `e`},
        b = #{self + `e`};
    var p0 = 0,
        p1 = 1,
        q0 = 1,
        q1 = 0,
        p2, q2;
    var c, k, t;
    while (true) {
      c = #{`a`.ceil};
      if (#{`c` <= `b`}) {
        break;
      }
      k  = c - 1;
      p2 = k * p1 + p0;
      q2 = k * q1 + q0;
      t  = #{1 / (`b` - `k`)};
      b  = #{1 / (`a` - `k`)};
      a  = t;
      p0 = p1;
      q0 = q1;
      p1 = p2;
      q1 = q2;
    }
    return #{Rational(`c * p1 + p0`, `c * q1 + q0`)};
  }
end | 
 
    
      
  
  
    #round(precision = 0)  ⇒ Object 
  
  
  
  
    | 
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317 | # File 'opal/opal/corelib/rational.rb', line 302
def round(precision = 0)
  return with_precision(:round, precision) unless precision == 0
  return 0 if @num == 0
  return @num if @den == 1
  num = @num.abs * 2 + @den
  den = @den * 2
  approx = (num / den).truncate
  if @num < 0
    -approx
  else
    approx
  end
end | 
 
    
      
  
  
    | 
319
320
321 | # File 'opal/opal/corelib/rational.rb', line 319
def to_f
  @num / @den
end | 
 
    
      
  
  
    | 
323
324
325 | # File 'opal/opal/corelib/rational.rb', line 323
def to_i
  truncate
end | 
 
    
      
  
  
    | 
327
328
329 | # File 'opal/opal/corelib/rational.rb', line 327
def to_r
  self
end | 
 
    
      
  
  
    | 
331
332
333 | # File 'opal/opal/corelib/rational.rb', line 331
def to_s
  "#@num/#@den"
end | 
 
    
      
  
  
    #truncate(precision = 0)  ⇒ Object 
  
  
  
  
    | 
335
336
337
338
339
340
341 | # File 'opal/opal/corelib/rational.rb', line 335
def truncate(precision = 0)
  if precision == 0
    @num < 0 ? ceil : floor
  else
    with_precision(:truncate, precision)
  end
end | 
 
    
      
  
  
    #with_precision(method, precision)  ⇒ Object 
  
  
  
  
    | 
343
344
345
346
347
348
349
350
351
352
353
354 | # File 'opal/opal/corelib/rational.rb', line 343
def with_precision(method, precision)
  raise TypeError, "not an Integer" unless Integer === precision
  p = 10 ** precision
  s = self * p
  if precision < 1
    (s.send(method) / p).to_i
  else
    Rational(s.send(method), p)
  end
end |