Skip to content

Commit af7d348

Browse files
committed
Remove wrong codimension
1 parent 9352a32 commit af7d348

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/sage/rings/function_field/khuri_makdisi.pyx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,10 @@ cdef class KhuriMakdisi_small(KhuriMakdisi_base):
844844
cdef Matrix w1, w2, w3, w4, w5
845845

846846
w1 = self.mu_image(wd1, wd2, self.mu_mat33, 4*d0 - g + 1)
847-
w2 = self.mu_preimage(self.wV3, w1, self.mu_mat33, 2*d0)
847+
# The row space of w2 represents H^0(O(3D_0 - D1 - D2)), whose dimension is
848+
# at least d0 - g + 1, and hence the codimension is at most 2*d0. Thus,
849+
# we cannot provide an expected_codim argument for mu_preimage.
850+
w2 = self.mu_preimage(self.wV3, w1, self.mu_mat33)
848851
w3 = self.mu_preimage(self.wV2, w1, self.mu_mat42, 2*d0)
849852
# efficient than
850853
# wf = matrix(w2[0])

0 commit comments

Comments
 (0)