We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 272582b commit 92ad155Copy full SHA for 92ad155
src/sage/schemes/elliptic_curves/mod_poly.py
@@ -24,6 +24,7 @@
24
_cache_bound = 100
25
_cache = dict()
26
27
+
28
def classical_modular_polynomial(l, j=None):
29
r"""
30
Return the classical modular polynomial `\Phi_\ell`, either as a
@@ -143,6 +144,7 @@ def classical_modular_polynomial(l, j=None):
143
144
# and simply evaluating it.
145
return classical_modular_polynomial(l)(j, Y)
146
147
148
def _set_cache_bound(bnd):
149
150
Internal helper function to allow setting the caching cutoff for
@@ -164,4 +166,5 @@ def _set_cache_bound(bnd):
164
166
global _cache_bound
165
167
_cache_bound = bnd
168
169
170
classical_modular_polynomial.set_cache_bound = _set_cache_bound
0 commit comments