-
-
Notifications
You must be signed in to change notification settings - Fork 217
Segemented Sieve for Prime number generation. #62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…roviding more memory efficiency
removed the unused "time" module
|
thanks for the contriibution |
|
But once travisCI is not fixed we will not be able to merge this |
|
The above code is in python 3.x, should I refactor it to python 2.6+ ? |
|
yeah I think you should, because the travis doesnt work for py3 now. |
|
@CaptainDaVinci could you update requirements.txt? |
|
Aren't all the dependencies updated in the requirements.txt after this commit https://github.com/prateekiiest/Code-Sleep-Python/commits/master/requirements.txt ? |
|
No, it still does not have the required libraries like mvcrt, requests |
|
Ok, I will try adding the remaining libraries. However, some of the code is in python 3, Travis would still fail, wouldn't it? |
|
dependancies need to be updated for that in the travis.yml file. |
|
Ran locally. |
Added Segemented sieve for generating primes in a given range. This method provides more efficiency in terms of memory.