Skip to content

Commit

Permalink
gh-34988: Integer-valued polynomial ring
Browse files Browse the repository at this point in the history
    
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
  • Loading branch information
Release Manager committed Mar 10, 2023
2 parents f7ea8c7 + 8774a72 commit 1463bac
Show file tree
Hide file tree
Showing 3 changed files with 1,142 additions and 4 deletions.
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

0 comments on commit 1463bac

Please sign in to comment.