Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more
An implementation of PseudoPrimeGenerator
.
Uses EratosthenesSieve
.
# File prime.rb, line 313 def succ @last_prime = @last_prime ? EratosthenesSieve.instance.next_to(@last_prime) : 2 end