[35aab3] | 1 | #ifndef MAPS_H |
---|
| 2 | #define MAPS_H |
---|
| 3 | /**************************************** |
---|
| 4 | * Computer Algebra System SINGULAR * |
---|
| 5 | ****************************************/ |
---|
| 6 | /* |
---|
| 7 | * ABSTRACT - the mapping of polynomials to other rings |
---|
| 8 | */ |
---|
[b2ca85] | 9 | #include "coeffs/coeffs.h" |
---|
| 10 | #include "polys/monomials/ring.h" |
---|
[0cf29ee] | 11 | |
---|
[5c71ae1] | 12 | // poly maEval(map theMap, poly p, ring dst_ring, nMapFunc nMap, ideal s=NULL); |
---|
| 13 | poly maEval(map theMap, poly p,ring preimage_r,nMapFunc nMap, ideal s, const ring dst_r); |
---|
| 14 | |
---|
[c6a3eb2] | 15 | map maCopy(map theMap, const ring dst_ring); |
---|
[35aab3] | 16 | |
---|
[0cf29ee] | 17 | poly maIMap(ring src_ring, ring dst_ring, poly p); |
---|
[35aab3] | 18 | |
---|
[7fee876] | 19 | void maFindPerm(char const * const * const preim_names, int preim_n, char const * const * const preim_par, int preim_p, |
---|
| 20 | char const * const * const names, int n, char const * const * const par, int nop, |
---|
[7ac612] | 21 | int * perm, int *par_perm, n_coeffType ch); |
---|
[0ae5299] | 22 | #ifdef HAVE_SHIFTBBA |
---|
| 23 | void maFindPermLP(char const * const * const preim_names, int preim_n, char const * const * const preim_par, int preim_p, |
---|
| 24 | char const * const * const names, int n, char const * const * const par, int nop, |
---|
| 25 | int * perm, int *par_perm, n_coeffType ch, int lV); |
---|
[c3b7d1e] | 26 | void maFetchPermLP(const ring preimage_r, const ring dst_r, int * perm); |
---|
[0ae5299] | 27 | #endif |
---|
[35aab3] | 28 | poly pSubstPoly(poly p, int var, poly image); |
---|
| 29 | ideal idSubstPoly(ideal id, int n, poly e); |
---|
| 30 | |
---|
[294537] | 31 | poly p_MinPolyNormalize(poly p, const ring r); |
---|
[35aab3] | 32 | int maMaxDeg_P(poly p,ring preimage_r); |
---|
| 33 | int maMaxDeg_Ma(ideal a,ring preimage_r); |
---|
[4d5437] | 34 | poly maEvalVariable(poly p, int v,int pExp, ideal s, const ring dst_r); |
---|
[bf36c4] | 35 | |
---|
[35aab3] | 36 | #endif |
---|