2022-12-22 10:14:40 +01:00
|
|
|
p = 2
|
2022-12-19 14:37:14 +01:00
|
|
|
m = 1
|
2022-12-22 10:14:40 +01:00
|
|
|
F = GF(p^(2), 'a')
|
|
|
|
a = F.gens()[0]
|
2022-12-19 14:37:14 +01:00
|
|
|
Rx.<x> = PolynomialRing(F)
|
|
|
|
f = x
|
|
|
|
C_super = superelliptic(f, m)
|
|
|
|
|
|
|
|
Rxy.<x, y> = PolynomialRing(F, 2)
|
2022-12-22 10:14:40 +01:00
|
|
|
f1 = superelliptic_function(C_super, x^3)
|
|
|
|
f2 = superelliptic_function(C_super, a*x^3)
|
|
|
|
AS = as_cover(C_super, [f1, f2], prec=1000)
|
|
|
|
#print(AS.at_most_poles(7))
|