-
-
Notifications
You must be signed in to change notification settings - Fork 519
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
add limit= argument to Integer.prime_divisors() #35019
add limit= argument to Integer.prime_divisors() #35019
Conversation
Codecov ReportBase: 88.60% // Head: 88.58% // Decreases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## develop #35019 +/- ##
===========================================
- Coverage 88.60% 88.58% -0.02%
===========================================
Files 2136 2140 +4
Lines 396142 396961 +819
===========================================
+ Hits 350990 351660 +670
- Misses 45152 45301 +149
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
082d7c6
to
0f06092
Compare
SageMath version 9.8, Release Date: 2023-02-11
LGTM |
Documentation preview for this PR is ready! 🎉 |
Thank you! |
Integer.factor()
has an optionallimit=
argument to restrict the search to prime factors up to a certain size. This patch adds a similar argument to the.prime_divisors()
method.