Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
New function zeta_function has been added to multi_polynomial
Browse files Browse the repository at this point in the history
  • Loading branch information
mckenziewest authored and fchapoton committed Oct 8, 2019
1 parent 533fd5d commit 2422fb1
Show file tree
Hide file tree
Showing 2 changed files with 656 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/sage/rings/polynomial/laurent_polynomial.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Elements of Laurent polynomial rings
# ****************************************************************************
from __future__ import print_function


from sage.rings.integer cimport Integer
from sage.structure.element import is_Element, coerce_binop
from sage.misc.misc import union
Expand All @@ -20,6 +21,7 @@ from sage.rings.polynomial.polynomial_element import Polynomial
from sage.structure.richcmp cimport richcmp, rich_to_bool



cdef class LaurentPolynomial(CommutativeAlgebraElement):
"""
Base class for Laurent polynomials.
Expand Down Expand Up @@ -237,6 +239,7 @@ cdef class LaurentPolynomial(CommutativeAlgebraElement):
raise NotImplementedError



cdef class LaurentPolynomial_univariate(LaurentPolynomial):
"""
A univariate Laurent polynomial in the form of `t^n \cdot f`
Expand Down
Loading

0 comments on commit 2422fb1

Please sign in to comment.