Skip to content
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

Bump AA, Nemo, Hecke #4405

Merged
merged 2 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
cohomCalg_jll = "5558cf25-a90e-53b0-b813-cadaa3ae7ade"

[compat]
AbstractAlgebra = "0.43.11"
AbstractAlgebra = "0.44.0"
AlgebraicSolving = "0.8.0"
Distributed = "1.6"
GAP = "0.12.0"
Hecke = "0.34.7"
Hecke = "0.35.0"
JSON = "^0.20, ^0.21"
JSON3 = "1.13.2"
LazyArtifacts = "1.6"
Markdown = "1.6"
Nemo = "0.47.1"
Nemo = "0.48.0"
Pkg = "1.6"
Polymake = "0.11.20"
ProgressMeter = "1.10.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,10 @@ Fraction field
of univariate polynomial ring in t over QQ

julia> E = elliptic_curve(Qtf, [0,0,0,0,t^5*(t-1)^2])
Elliptic curve with equation
y^2 = x^3 + t^7 - 2*t^6 + t^5
Elliptic curve
over fraction field of Qt
with equation
y^2 = x^3 + t^7 - 2*t^6 + t^5

julia> j_invariant(E)
0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,10 @@ julia> (x,y) = gens(R); P = K_t.([0,0]); # rational point
julia> g, _ = transform_to_weierstrass(g, x, y, P);

julia> E4 = elliptic_curve(g, x, y)
Elliptic curve with equation
y^2 = x^3 + 1//4*t^4*x^2 - 1//2*t^2*x + 1//4
Elliptic curve
over fraction field of univariate polynomial ring
with equation
y^2 = x^3 + 1//4*t^4*x^2 - 1//2*t^2*x + 1//4

julia> g,_ = two_neighbor_step(Y2, fibers_in_Y2[5]);g
t^2*x^3 + (-1//4*t^4 + 2*t)*x^2 + x + y^2
Expand All @@ -197,8 +199,10 @@ julia> (x,y) = gens(R); P = K_t.([0,0]); # rational point
julia> g, _ = transform_to_weierstrass(g, x, y, P);

julia> E5 = elliptic_curve(g, x, y)
Elliptic curve with equation
y^2 = x^3 + (1//4*t^4 - 2*t)*x^2 + t^2*x
Elliptic curve
over fraction field of univariate polynomial ring
with equation
y^2 = x^3 + (1//4*t^4 - 2*t)*x^2 + t^2*x

julia> g,_ = two_neighbor_step(Y2, fibers_in_Y2[6]);g
(t^2 + 2*t + 1)*x^3 + y^2 - 1//4*t^4
Expand All @@ -210,5 +214,7 @@ julia> (x,y) = gens(R); P = K_t.([0,1//2*t^2]); # rational point
julia> g, _ = transform_to_weierstrass(g, x, y, P);

julia> E6 = elliptic_curve(g, x, y)
Elliptic curve with equation
y^2 + (-t^2 - 2*t - 1)//t^4*y = x^3
Elliptic curve
over fraction field of univariate polynomial ring
with equation
y^2 + (-t^2 - 2*t - 1)//t^4*y = x^3
Loading