An implementation of PseudoPrimeGenerator
which uses a prime table generated by trial division.
# File lib/prime.rb, line 429 def initialize @index = -1 super end
Prime::PseudoPrimeGenerator::new
# File lib/prime.rb, line 437 def rewind initialize end
# File lib/prime.rb, line 434 def succ TrialDivision.instance[@index += 1] end
Ruby Core © 1993–2020 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.