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 committed Oct 9, 2017
1 parent 6cd9971 commit 30f7aef
Show file tree
Hide file tree
Showing 2 changed files with 656 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sage/rings/polynomial/laurent_polynomial.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Elements of Laurent polynomial rings
# (at your option) any later version.
# http://www.gnu.org/licenses/
#*****************************************************************************
from __future__ import print_function
from __future__ import absolute_import, print_function

from sage.rings.integer cimport Integer
from sage.structure.element import is_Element, coerce_binop
Expand All @@ -20,6 +20,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 @@ -204,6 +205,7 @@ cdef class LaurentPolynomial(CommutativeAlgebraElement):
return self.number_of_terms()



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

0 comments on commit 30f7aef

Please sign in to comment.