On this page
class Prime::TrialDivisionGenerator
An implementation of PseudoPrimeGenerator
which uses a prime table generated by trial division.
Public Class Methods
# File lib/prime.rb, line 331
def initialize
@index = -1
super
end
Calls superclass method
Prime::PseudoPrimeGenerator::new
Public Instance Methods
next()
Alias for: succ
# File lib/prime.rb, line 339
def rewind
initialize
end
# File lib/prime.rb, line 336
def succ
TrialDivision.instance[@index += 1]
end
Also aliased as: next
Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.