Skip to content

Commit 52655a9

Browse files
author
Xavier Caruso
committed
address Antoine's comments
1 parent b206797 commit 52655a9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/sage/rings/function_field/drinfeld_modules/charzero_drinfeld_module.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,6 +533,9 @@ def class_polynomial(self):
533533
Return the class polynomial, that is the Fitting ideal
534534
of the class module, of this Drinfeld module.
535535
536+
We refer to [Tae2012]_ for the definition and basic
537+
properties of the class module.
538+
536539
EXAMPLES:
537540
538541
We check that the class module of the Carlitz module
@@ -558,7 +561,7 @@ def class_polynomial(self):
558561
559562
Here is an example with a nontrivial class module::
560563
561-
sage: phi = DrinfeldModule(A, [T, -T^(2*q-1) + 2*T^(q-1)])
564+
sage: phi = DrinfeldModule(A, [T, 2*T^14 + 2*T^4])
562565
sage: phi.class_polynomial()
563566
T + 3
564567
@@ -629,7 +632,7 @@ def class_polynomial(self):
629632
for i in range(dim, s):
630633
while ip < dim and j == pivots[ip]:
631634
j += 1
632-
ip += 1
635+
ip += 1
633636
V[i,j] = 1
634637
N = (V * M * ~V).submatrix(dim, dim)
635638

0 commit comments

Comments
 (0)