-
-
Notifications
You must be signed in to change notification settings - Fork 487
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
faster comparison of elliptic-curve morphisms #38808
faster comparison of elliptic-curve morphisms #38808
Conversation
Documentation preview for this PR (built with commit 64236f9; changes) is ready! 🎉 |
Not sure why but doctests are failing with some unsorted issue. |
Oh, because you modified |
35f3f88
to
64236f9
Compare
Oops. Just pushed another version that only runs this check when testing |
I think it looks good, I'll relabel it when doctest is done. |
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, and doctests seem to have passed too.
Thanks, I forgot about it 🥲 |
Here we add two fast checks to the generic comparison method for elliptic-curve morphisms that will quickly detect some pairs of unequal morphisms. In the context of sagemath#35949, this speeds up the following example from 5.9 seconds to 1.8 seconds: ```sage sage: E = EllipticCurve(GF((5, 2)), [0,1]) sage: %time _ = list(E.isogenies_degree(27)) ``` URL: sagemath#38808 Reported by: Lorenz Panny Reviewer(s): Sebastian A. Spindler
Here we add two fast checks to the generic comparison method for elliptic-curve morphisms that will quickly detect some pairs of unequal morphisms. In the context of sagemath#35949, this speeds up the following example from 5.9 seconds to 1.8 seconds: ```sage sage: E = EllipticCurve(GF((5, 2)), [0,1]) sage: %time _ = list(E.isogenies_degree(27)) ``` URL: sagemath#38808 Reported by: Lorenz Panny Reviewer(s): Sebastian A. Spindler
Here we add two fast checks to the generic comparison method for elliptic-curve morphisms that will quickly detect some pairs of unequal morphisms. In the context of sagemath#35949, this speeds up the following example from 5.9 seconds to 1.8 seconds: ```sage sage: E = EllipticCurve(GF((5, 2)), [0,1]) sage: %time _ = list(E.isogenies_degree(27)) ``` URL: sagemath#38808 Reported by: Lorenz Panny Reviewer(s): Sebastian A. Spindler
Here we add two fast checks to the generic comparison method for elliptic-curve morphisms that will quickly detect some pairs of unequal morphisms. In the context of sagemath#35949, this speeds up the following example from 5.9 seconds to 1.8 seconds: ```sage sage: E = EllipticCurve(GF((5, 2)), [0,1]) sage: %time _ = list(E.isogenies_degree(27)) ``` URL: sagemath#38808 Reported by: Lorenz Panny Reviewer(s): Sebastian A. Spindler
Here we add two fast checks to the generic comparison method for elliptic-curve morphisms that will quickly detect some pairs of unequal morphisms. In the context of #35949, this speeds up the following example from 5.9 seconds to 1.8 seconds: