Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/schemes/all.py
4066 views
1
"""nodoctest
2
all.py -- export of schemes to Sage
3
"""
4
5
#*****************************************************************************
6
#
7
# Sage: System for Algebra and Geometry Experimentation
8
#
9
# Copyright (C) 2005 William Stein <[email protected]>
10
#
11
# Distributed under the terms of the GNU General Public License (GPL)
12
#
13
# This code is distributed in the hope that it will be useful,
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16
# General Public License for more details.
17
#
18
# The full text of the GPL is available at:
19
#
20
# http://www.gnu.org/licenses/
21
#*****************************************************************************
22
23
from jacobians.all import *
24
25
from hyperelliptic_curves.all import *
26
27
from plane_curves.all import *
28
29
from plane_conics.all import *
30
31
from elliptic_curves.all import *
32
33
from plane_quartics.all import *
34
35
from generic.all import *
36
37
from toric.all import *
38
39
40
41
42