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

Commit 0872312

Browse files
committed
increase minimum degree for Îlu formulas to 9
This is mainly done to exclude curves over GF(3) with 7 rational points, which cause trouble for √élu as they don't have any points defined only in a quadratic extension of the base field. Hence, the resulting isogeny won't be defined over GF(3). Since √élu is still much slower than Vélu for degrees this small, noone will miss the functionality thus excluded.
1 parent cae9ee5 commit 0872312

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sage/schemes/elliptic_curves/hom_velusqrt.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -756,7 +756,7 @@ class EllipticCurveHom_velusqrt(EllipticCurveHom):
756756
INPUT:
757757
758758
- ``E`` -- an elliptic curve over a finite field
759-
- ``P`` -- a point on `E` of odd order `\geq 5`
759+
- ``P`` -- a point on `E` of odd order `\geq 9`
760760
- ``codomain`` -- codomain elliptic curve (optional)
761761
- ``model`` -- string (optional); input to
762762
:meth:`~sage.schemes.elliptic_curves.ell_field.compute_model`
@@ -884,8 +884,8 @@ def __init__(self, E, P, *, codomain=None, model=None, Q=None):
884884
self._P = self._pre_iso(P)
885885

886886
self._degree = self._P.order()
887-
if self._degree % 2 != 1 or self._degree < 5:
888-
raise NotImplementedError('only implemented for odd degrees >= 5')
887+
if self._degree % 2 != 1 or self._degree < 9:
888+
raise NotImplementedError('only implemented for odd degrees >= 9')
889889

890890
if Q is not None:
891891
self._Q = E(Q)
@@ -1208,11 +1208,11 @@ def _random_example_for_testing():
12081208
E.short_weierstrass_model()
12091209
except ValueError:
12101210
continue
1211-
if E.cardinality() < 5:
1211+
if E.cardinality() < 9:
12121212
continue
12131213
A = E.abelian_group()
12141214
ds = max(A.invariants()).prime_to_m_part(2).divisors()
1215-
ds = [d for d in ds if 5 <= d < 1000]
1215+
ds = [d for d in ds if 9 <= d < 1000]
12161216
if ds:
12171217
deg = choice(ds)
12181218
break

0 commit comments

Comments
 (0)