Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/sage/databases/all.py
8814 views
1
"""
2
This file gathers together all the tables in Sage.
3
4
* ConwayPolynomials() -- database of selected Conway polynomials.
5
6
* CremonaDatabase() - Cremona's tables of elliptic curves and related data.
7
8
* JonesDatabase() -- returns the John Jones table of number fields
9
with bounded ramification and degree <= 6.
10
11
* oeis -- The On-Line Encyclopedia of Integer Sequences (http://oeis.org/).
12
13
* SloaneEncyclopedia -- Local copy of Sloane On-Line Encyclopedia of
14
Integer Sequences.
15
16
* SteinWatkinsAllData() and SteinWatkinsPrimeData() - The
17
Stein-Watkins tables of elliptic curves and related data.
18
19
* SymbolicData() -- many benchmark and testing ideals
20
21
EXAMPLES::
22
23
sage: ConwayPolynomials()
24
Frank Luebeck's database of Conway polynomials
25
26
sage: CremonaDatabase()
27
Cremona's database of elliptic curves with conductor...
28
29
sage: JonesDatabase()
30
John Jones's table of number fields with bounded ramification and degree <= 6
31
32
sage: oeis
33
The On-Line Encyclopedia of Integer Sequences (http://oeis.org/)
34
35
sage: SymbolicData()
36
SymbolicData with ... ideals
37
"""
38
39
#*****************************************************************************
40
# Copyright (C) 2005 William Stein <[email protected]>
41
#
42
# Distributed under the terms of the GNU General Public License (GPL)
43
# as published by the Free Software Foundation; either version 2 of
44
# the License, or (at your option) any later version.
45
# http://www.gnu.org/licenses/
46
#*****************************************************************************
47
48
49
from sql_db import SQLQuery, SQLDatabase
50
51
from conway import ConwayPolynomials
52
53
from cremona import CremonaDatabase
54
55
from jones import JonesDatabase
56
57
from stein_watkins import SteinWatkinsAllData, SteinWatkinsPrimeData
58
59
from install import database_install
60
61
from sloane import sloane_sequence, sloane_find, SloaneEncyclopedia
62
63
from sage.misc.lazy_import import lazy_import
64
lazy_import('sage.databases.oeis', 'oeis')
65
66
from symbolic_data import SymbolicData
67
68
# commented out, since it's broken -- nobody updated the parser
69
# for the new format; nobody complained it didn't work, so it
70
# can't be that important.
71
#from lincodes import linear_code_bound
72
73
from odlyzko import zeta_zeros
74
75
from db_modular_polynomials import \
76
ClassicalModularPolynomialDatabase, \
77
DedekindEtaModularPolynomialDatabase, \
78
DedekindEtaModularCorrespondenceDatabase, \
79
AtkinModularPolynomialDatabase, \
80
AtkinModularCorrespondenceDatabase
81
82
from db_class_polynomials import \
83
HilbertClassPolynomialDatabase
84
85
from symbolic_data import SymbolicData
86
87
from cunningham_tables import cunningham_prime_factors
88
89