-
Notifications
You must be signed in to change notification settings - Fork 66
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 Simon's constructor for elliptic curves. #1190
Add Simon's constructor for elliptic curves. #1190
Conversation
test/EllCrv/EllCrv.jl
Outdated
@testset "additional constructors" begin | ||
R, (x, y) = polynomial_ring(QQ, [:x, :y]) | ||
f = y^2 - x^3 - 3*x^2 + 7*x - 4 | ||
Hecke.elliptic_curve(f, x, y) |
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.
Hecke.elliptic_curve(f, x, y) | |
elliptic_curve(f, x, y) |
test/EllCrv/EllCrv.jl
Outdated
kt = fraction_field(pt) | ||
R, (x, y) = polynomial_ring(kt, [:x, :y]) | ||
f = y^2 - x^3 - 3*t*x^2 + 7*x - 4*t^2 - 3 | ||
Hecke.elliptic_curve(f, x, y) |
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.
Hecke.elliptic_curve(f, x, y) | |
elliptic_curve(f, x, y) |
A docstring would be nice |
Really? I was afraid, this would not be appreciated because of too many documented methods of the same function. But I can try to add it. Btw: It seems you already had similar functionality. Is that true? |
At the moment there are two methods documented, so adding another won't hurt. And I don't think we have anything that accepts bivariate polynomials. |
Thank you. |
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## master #1190 +/- ##
==========================================
+ Coverage 74.38% 74.41% +0.02%
==========================================
Files 346 346
Lines 110720 110743 +23
==========================================
+ Hits 82361 82404 +43
+ Misses 28359 28339 -20
☔ View full report in Codecov by Sentry. |
CC: @simonbrandhorst