2024-02-08 20:25:10 +01:00
|
|
|
p = 3
|
2024-02-08 20:45:54 +01:00
|
|
|
F = GF(3^2, 'a')
|
2024-01-03 10:06:35 +01:00
|
|
|
Rx.<x> = PolynomialRing(F)
|
2024-02-08 20:45:54 +01:00
|
|
|
P1 = superelliptic(x^2 + 1, 2)
|
2024-02-08 20:25:10 +01:00
|
|
|
fct1 = (P1.x)^2
|
|
|
|
fct2 = fct1 + (P1.x)/(P1.y - P1.x)
|
|
|
|
fct3 = (P1.x)^4
|
2024-02-08 20:45:54 +01:00
|
|
|
C = heisenberg_cover(P1, [1/2*fct1, fct2, fct3], prec=300)
|
2024-01-03 10:06:35 +01:00
|
|
|
print(C)
|
2024-02-08 21:38:34 +01:00
|
|
|
B = C.holomorphic_differentials_basis()
|
|
|
|
print("Computed basis")
|
|
|
|
a1, b1, c1 = heisenberg_group_action_matrices_holo(C, basis = B)
|