Skip to content

Commit 08cf667

Browse files
committed
typo in meridians for projective curves
1 parent 1f45900 commit 08cf667

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/sage/schemes/curves/plane_curve_arrangement.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -954,19 +954,19 @@ def meridians(self, simplified=True) -> dict:
954954
sage: A.meridians()
955955
{0: [x0, x1*x0*x1^-1], 1: [x0^-1*x1^-1*x0^-1], 2: [x1]}
956956
sage: A = H(y^2 + x*z, z*x, y)
957+
sage: A.meridians()
958+
{0: [x0, x2*x0*x2^-1], 1: [x2, x0^-1*x2^-1*x1^-1*x0^-1], 2: [x1]}
957959
sage: A.fundamental_group()
958960
Finitely presented group < x0, x1, x2 | x2*x0*x1*x0^-1*x2^-1*x1^-1,
959961
x1*(x2*x0)^2*x2^-1*x1^-1*x0^-1*x2^-1*x0^-1 >
960-
sage: A.meridians()
961-
{0: [x0, x2*x0*x2^-1], 1: [x2, x0^-1*x2^-1*x1^-1*x0^-1], 2: [x1]}
962962
"""
963963
if simplified:
964964
computed = self._meridians_simpl
965965
else:
966966
computed = self._meridians_nonsimpl
967967
if computed:
968968
return dict(computed)
969-
self._fundamental_group(simplified=simplified)
969+
self.fundamental_group(simplified=simplified)
970970
if simplified:
971971
return dict(self._meridians_simpl)
972972
else:

0 commit comments

Comments
 (0)