-
-
Notifications
You must be signed in to change notification settings - Fork 479
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
support calling PARI's qfbcornacchia() from BinaryQF #35262
support calling PARI's qfbcornacchia() from BinaryQF #35262
Conversation
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## develop #35262 +/- ##
===========================================
- Coverage 88.62% 88.61% -0.02%
===========================================
Files 2148 2148
Lines 398855 398665 -190
===========================================
- Hits 353480 353263 -217
- Misses 45375 45402 +27
... and 118 files with indirect coverage changes 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 in Codecov by Sentry. |
6a8b260
to
b7233c8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM modulo some small things.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you.
SageMath version 10.0.beta5, Release Date: 2023-03-19
Documentation preview for this PR is ready! 🎉 |
See |
Recent versions of PARI have a
qfbcornacchia()
function which can replace special cases ofqfbsolve()
while being much faster. In this patch we add a path toqfbcornacchia()
in theBinaryQF.solve_integer()
method; it can be selected using an optionalalgorithm=
argument. See the added doctest for an example of the speedup.Also fixes #35292.