Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac 22257 details
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Chapoton committed Mar 9, 2017
1 parent e1f07ca commit a93ded9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
1 change: 0 additions & 1 deletion src/sage/rings/real_lazy.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ import math

cdef add, sub, mul, div, pow, neg, inv
from operator import add, sub, mul, div, pow, neg, inv
from cpython.object cimport Py_EQ

cdef canonical_coercion
from sage.structure.element import canonical_coercion
Expand Down
5 changes: 1 addition & 4 deletions src/sage/schemes/elliptic_curves/heegner.py
Original file line number Diff line number Diff line change
Expand Up @@ -6250,11 +6250,8 @@ def kolyvagin_point(self, D, c=ZZ(1), check=True):
sage: E = EllipticCurve('37a1')
sage: P = E.kolyvagin_point(-67); P
Kolyvagin point of discriminant -67 on elliptic curve of conductor 37
sage: xyz = P.numerical_approx(); xyz # random digits
sage: P.numerical_approx() # abs tol 1e-14
(6.00000000000000 : -15.0000000000000 : 1.00000000000000)
sage: x, y = xyz.xy()
sage: max(abs(x - 6), abs(y + 15)) < 1e-14
True
sage: P.index()
6
sage: g = E((0,-1,1)) # a generator
Expand Down

0 comments on commit a93ded9

Please sign in to comment.