Class: Prime::PseudoPrimeGenerator

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/prime.rb

Overview

An abstract class for enumerating pseudo-prime numbers.

Concrete subclasses should override succ, next, rewind.

Instance Method Summary collapse

Constructor Details

#initialize(ubound = nil) ⇒ PseudoPrimeGenerator

Returns a new instance of PseudoPrimeGenerator.



233
234
235
# File 'lib/prime.rb', line 233

def initialize(ubound = nil)
  @ubound = ubound
end

Instance Method Details

#eachObject

Iterates the given block for each prime number.



265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
# File 'lib/prime.rb', line 265

def each
  return self.dup unless block_given?
  if @ubound
    last_value = nil
    loop do
      prime = succ
      break last_value if prime > @ubound
      last_value = yield prime
    end
  else
    loop do
      yield succ
    end
  end
end

#nextObject

alias of succ.

Raises:

  • (NotImplementedError)


253
254
255
# File 'lib/prime.rb', line 253

def next
  raise NotImplementedError, "need to define `next'"
end

#rewindObject

Rewinds the internal position for enumeration.

See Enumerator#rewind.

Raises:

  • (NotImplementedError)


260
261
262
# File 'lib/prime.rb', line 260

def rewind
  raise NotImplementedError, "need to define `rewind'"
end

#sizeObject



300
301
302
# File 'lib/prime.rb', line 300

def size
  Float::INFINITY
end

#succObject

returns the next pseudo-prime number, and move the internal position forward.

PseudoPrimeGenerator#succ raises NotImplementedError.

Raises:

  • (NotImplementedError)


248
249
250
# File 'lib/prime.rb', line 248

def succ
  raise NotImplementedError, "need to define `succ'"
end

#upper_boundObject



240
241
242
# File 'lib/prime.rb', line 240

def upper_bound
  @ubound
end

#upper_bound=(ubound) ⇒ Object



237
238
239
# File 'lib/prime.rb', line 237

def upper_bound=(ubound)
  @ubound = ubound
end

#with_index(offset = 0) ⇒ Object

see Enumerator#with_index.



282
283
284
285
286
287
288
289
290
# File 'lib/prime.rb', line 282

def with_index(offset = 0)
  return enum_for(:with_index, offset) { Float::INFINITY } unless block_given?
  return each_with_index(&proc) if offset == 0

  each do |prime|
    yield prime, offset
    offset += 1
  end
end

#with_object(obj) ⇒ Object

see Enumerator#with_object.



293
294
295
296
297
298
# File 'lib/prime.rb', line 293

def with_object(obj)
  return enum_for(:with_object, obj) { Float::INFINITY } unless block_given?
  each do |prime|
    yield prime, obj
  end
end