This repository was archived by the owner on Jan 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
very rough and sketchy tentative of Puiseux polynomials
- Loading branch information
Frédéric Chapoton
committed
Jul 5, 2018
1 parent
6bccacc
commit 336e58b
Showing
5 changed files
with
2,406 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from sage.structure.element cimport CommutativeAlgebraElement, ModuleElement, RingElement, Element | ||
from sage.rings.polynomial.polydict cimport ETuple, PolyDict | ||
from sage.rings.polynomial.multi_polynomial cimport MPolynomial | ||
|
||
|
||
cdef class PuiseuxPolynomial(CommutativeAlgebraElement): | ||
cdef PuiseuxPolynomial _new_c(self) | ||
cpdef _add_(self, other) | ||
cpdef _mul_(self, other) | ||
cpdef _floordiv_(self, other) | ||
cpdef long number_of_terms(self) except -1 | ||
cpdef dict dict(self) | ||
|
||
cdef class PuiseuxPolynomial_univariate(PuiseuxPolynomial): | ||
cpdef ModuleElement __u | ||
cdef long __n | ||
cpdef _unsafe_mutate(self, i, value) |
Oops, something went wrong.