Skip to content

Commit 2d2592d

Browse files
committed
Reviewer suggestions
1 parent f0b4df5 commit 2d2592d

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/sage/rings/function_field/khuri_makdisi.pyx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -847,13 +847,11 @@ cdef class KhuriMakdisi_small(KhuriMakdisi_base):
847847
sage: E.<y> = F.extension(t^3 + (x^2 + x + 1)*t^2 + (x^3 + x + 1)*t + x^5 + x^4)
848848
sage: O = E.maximal_order()
849849
sage: Oinf = E.maximal_order_infinite()
850-
sage: D1 = (-5 * O.ideal(x, y).divisor() + O.ideal(x + 1, y^2 + y + 1).divisor()
850+
sage: D1 = (-5*O.ideal(x, y).divisor() + O.ideal(x + 1, y^2 + y + 1).divisor()
851851
....: + O.ideal(x^3 + x^2 + 1, y + x + 1).divisor())
852-
sage: D2 = (Oinf.ideal(1/x, y/x^2 + 1).divisor() - 5 * O.ideal(x, y).divisor()
852+
sage: D2 = (Oinf.ideal(1/x, y/x^2 + 1).divisor() - 5*O.ideal(x, y).divisor()
853853
....: + O.ideal(x^4 + x^3 + 1, y + x).divisor())
854-
sage: assert D1.degree() == 0
855-
sage: assert D2.degree() == 0
856-
sage: J = E.jacobian('km_small')
854+
sage: J = E.jacobian('km_small', base_div=5*O.ideal(x, y).divisor())
857855
sage: JD1 = J(D1)
858856
sage: JD2 = J(D2)
859857
sage: JD1 + JD2 == JD2 + JD1

0 commit comments

Comments
 (0)