-
-
Notifications
You must be signed in to change notification settings - Fork 631
Some documentation clean-up #39043
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some documentation clean-up #39043
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -808,16 +808,28 @@ def two_descent(self, verbose=True, | |
|
||
- ``selmer_only`` -- boolean (default: ``False``); selmer_only switch | ||
|
||
- ``first_limit`` -- (default: 20) firstlim is bound | ||
on x+z second_limit- (default: 8) secondlim is bound on log max | ||
x,z , i.e. logarithmic | ||
|
||
- ``n_aux`` -- (default: -1) n_aux only relevant for | ||
general 2-descent when 2-torsion trivial; n_aux=-1 causes default | ||
to be used (depends on method) | ||
|
||
- ``second_descent`` -- (default: ``True``) | ||
second_descent only relevant for descent via 2-isogeny | ||
- ``first_limit`` -- integer (default: 20); naive height bound on | ||
first point search on quartic homogeneous spaces (before | ||
testing local solubility; very simple search with no | ||
overheads). | ||
|
||
- ``second_limit`` -- integer (default: 8); logarithmic height bound on | ||
second point search on quartic homogeneous spaces (after | ||
testing local solubility; sieve-assisted search) | ||
|
||
- ``n_aux`` -- integer (default: -1); if positive, the number of | ||
auxiliary primes used in sieve-assisted search for quartics. | ||
If -1 (the default) use a default value (set in the eclib | ||
code in ``src/qrank/mrank1.cc`` in DEFAULT_NAUX: currently 8). | ||
Only relevant for curves with no 2-torsion, where full | ||
2-descent is carried out. Worth increasing for curves | ||
expected to be of rank > 6 to one or two more than the | ||
expected rank. | ||
|
||
- ``second_descent`` -- boolean (default: ``True``); flag specifying | ||
whether or not a second descent will be carried out. Only relevant | ||
for curves with 2-torsion. Recommended left as the default except for | ||
experts interested in details of Selmer groups. | ||
|
||
OUTPUT: | ||
|
||
|
@@ -2256,9 +2268,9 @@ def gens(self, proof=None, **kwds): | |
|
||
- ``algorithm`` -- one of the following: | ||
|
||
- ``'mwrank_shell'`` -- default; call mwrank shell command | ||
- ``'mwrank_lib'`` -- default; call mwrank C library | ||
|
||
- ``'mwrank_lib'`` -- call mwrank C library | ||
- ``'mwrank_shell'`` -- call mwrank shell command | ||
|
||
- ``'pari'`` -- use ellrank in pari | ||
|
||
|
@@ -2268,7 +2280,11 @@ def gens(self, proof=None, **kwds): | |
- ``use_database`` -- boolean (default: ``True``); if ``True``, attempts to | ||
find curve and gens in the (optional) database | ||
|
||
- ``descent_second_limit`` -- (default: 12) used in 2-descent | ||
- ``descent_second_limit`` -- (default: 12); logarithmic height bound on | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also I notice the default here is 12 instead of 8… changing it would be a functional change though. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would leave it. I don't feel comfortable reviewing such a change. |
||
second point search on quartic homogeneous spaces (after | ||
testing local solubility; sieve-assisted search). Used in 2-descent. | ||
See also ``second_limit`` | ||
in :meth:`~sage.libs.eclib.interface.mwrank_EllipticCurve.two_descent` | ||
|
||
- ``sat_bound`` -- (default: 1000) bound on primes used in | ||
saturation. If the computed bound on the index of the | ||
|
Uh oh!
There was an error while loading. Please reload this page.