Skip to content

Commit 1463bac

Browse files
author
Release Manager
committed
gh-34988: Integer-valued polynomial ring Thanks for contributing to Sage! Detailed instructions to be added shortly. Please make sure to also have a look at our [Code Style Conventions](https://doc.sagemath.org/html/en/developer/codi ng_basics.html). Fixes #34814 URL: #34988 Reported by: Frédéric Chapoton Reviewer(s): Frédéric Chapoton, Travis Scrimshaw
2 parents f7ea8c7 + 8774a72 commit 1463bac

File tree

3 files changed

+1142
-4
lines changed

3 files changed

+1142
-4
lines changed

src/doc/en/reference/polynomial_rings/polynomial_rings_univar.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,5 @@ whereas others have multiple bases.
4343

4444
sage/rings/polynomial/polynomial_compiled
4545
sage/rings/polynomial/polynomial_fateman
46+
47+
sage/rings/polynomial/integer_valued_polynomials

src/sage/rings/polynomial/all.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
"""
22
Polynomials
33
"""
4-
5-
#*****************************************************************************
4+
# ****************************************************************************
65
# Copyright (C) 2005 William Stein <[email protected]>
76
#
87
# Distributed under the terms of the GNU General Public License (GPL)
@@ -14,8 +13,8 @@
1413
#
1514
# The full text of the GPL is available at:
1615
#
17-
# http://www.gnu.org/licenses/
18-
#*****************************************************************************
16+
# https://www.gnu.org/licenses/
17+
# ****************************************************************************
1918

2019
from sage.misc.lazy_import import lazy_import
2120

@@ -51,3 +50,7 @@
5150

5251
# Evaluation of cyclotomic polynomials
5352
from sage.rings.polynomial.cyclotomic import cyclotomic_value
53+
54+
# Integer-valued Univariate Polynomial Ring
55+
lazy_import('sage.rings.polynomial.integer_valued_polynomials',
56+
'IntegerValuedPolynomialRing')

0 commit comments

Comments
 (0)