From cca2a64bcf40416228921474343e352b23bd9829 Mon Sep 17 00:00:00 2001 From: John Cremona Date: Fri, 8 Mar 2024 03:40:03 -0500 Subject: [PATCH] ECQ remove 500k bound on rank 0 Sha certification --- lmfdb/elliptic_curves/web_ec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lmfdb/elliptic_curves/web_ec.py b/lmfdb/elliptic_curves/web_ec.py index bbf8dbfb15..a5fb25f072 100644 --- a/lmfdb/elliptic_curves/web_ec.py +++ b/lmfdb/elliptic_curves/web_ec.py @@ -620,7 +620,7 @@ def make_mwbsd(self): mwbsd['reg'] = self.regulator mwbsd['sha'] = self.sha mwbsd['sha2'] = latex_sha(self.sha) - mwbsd['sha_is_exact'] = self.rank==0 and self.conductor<500000 + mwbsd['sha_is_exact'] = self.rank==0 # see Issue #5872 for num in ['reg', 'special_value', 'real_period', 'area']: mwbsd[num] = RR(mwbsd[num]) except AttributeError: