Skip to content

Commit

Permalink
Undo line gathering
Browse files Browse the repository at this point in the history
  • Loading branch information
S17A05 committed Feb 11, 2025
1 parent c5828ca commit aeb512f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/schemes/elliptic_curves/ell_rational_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -2400,9 +2400,9 @@ def _compute_gens(self, proof,
sage: E = EllipticCurve([-127^2,0])
sage: P = E.lift_x(611429153205013185025/9492121848205441)
sage: (set(E.gens(use_database=False, algorithm='pari', pari_effort=4)) # long time
....: <= set([P+T for T in E.torsion_points()]
....: + [-P+T for T in E.torsion_points()]))
sage: ge = set(E.gens(use_database=False, algorithm='pari',pari_effort=4)) # long time
sage: ge <= set([P+T for T in E.torsion_points()] # long time
....: + [-P+T for T in E.torsion_points()])
True
"""
# If the optional extended database is installed and an
Expand Down

0 comments on commit aeb512f

Please sign in to comment.