Skip to content
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

Integer-valued polynomial ring #34988

Merged
merged 15 commits into from
Mar 13, 2023
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,5 @@ whereas others have multiple bases.

sage/rings/polynomial/polynomial_compiled
sage/rings/polynomial/polynomial_fateman

sage/rings/polynomial/integer_valued_polynomials
11 changes: 7 additions & 4 deletions src/sage/rings/polynomial/all.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
"""
Polynomials
"""

#*****************************************************************************
# ****************************************************************************
# Copyright (C) 2005 William Stein <wstein@gmail.com>
#
# Distributed under the terms of the GNU General Public License (GPL)
Expand All @@ -14,8 +13,8 @@
#
# The full text of the GPL is available at:
#
# http://www.gnu.org/licenses/
#*****************************************************************************
# https://www.gnu.org/licenses/
# ****************************************************************************

from sage.misc.lazy_import import lazy_import

Expand Down Expand Up @@ -51,3 +50,7 @@

# Evaluation of cyclotomic polynomials
from sage.rings.polynomial.cyclotomic import cyclotomic_value

# Integer-valued Univariate Polynomial Ring
lazy_import('sage.rings.polynomial.integer_valued_polynomials',
'IntegerValuedPolynomialRing')
Loading