Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modular/modform/defaults.py
4045 views
1
#########################################################################
2
# Copyright (C) 2004--2006 William Stein <[email protected]>
3
#
4
# Distributed under the terms of the GNU General Public License (GPL)
5
#
6
# http://www.gnu.org/licenses/
7
#########################################################################
8
9
# The default precision for computation and display of q-expansions of
10
# modular forms.
11
from sage.rings.all import Integer
12
DEFAULT_PRECISION = Integer(6)
13
DEFAULT_VARIABLE = 'q'
14
15
16