Changeset 0cf29ee in git for libpolys/polys/monomials/maps.h
- Timestamp:
- Feb 16, 2011, 4:22:21 PM (12 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- d462535ac6e821fdd77c91e13ffbdaac08fbaf0f
- Parents:
- 7f2454a32a75b41620e04b7d1659bc49777346ec
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-02-16 16:22:21+01:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:59:29+01:00
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/maps.h
r7f2454a r0cf29ee 8 8 * ABSTRACT - the mapping of polynomials to other rings 9 9 */ 10 #include <kernel/structs.h> 11 #include <kernel/ideals.h> 10 #include <coeffs/coeffs.h> 11 #include <polys/monomials/ring.h> 12 //#include <kernel/ideals.h> 12 13 13 poly maEval(map theMap, poly p, ring preimage_r, nMapFunc nMap,matrix s=NULL); 14 map maCopy(map theMap); 14 typedef number (*nMapFunc)(number a, coeffs src, coeffs dst); 15 struct sip_smap; 16 typedef struct sip_smap * map; 17 18 poly maEval(map theMap, poly p, ring dst_ring, nMapFunc nMap); //,matrix s=NULL); 19 map maCopy(map theMap, ring dst_ring); 15 20 16 21 ideal maGetPreimage(ring theImageRing, map theMap,ideal id); 17 22 18 poly maIMap(ring r, poly p);23 poly maIMap(ring src_ring, ring dst_ring, poly p); 19 24 25 /* 20 26 BOOLEAN maApplyFetch(int what,map theMap,leftv res, leftv w, 21 27 ring preimage_r, int *perm, 22 28 int *par_perm,int P, nMapFunc nMap); 29 */ 23 30 void maFindPerm(char **preim_names, int preim_n, char **preim_par, int preim_p, 24 31 char **names, int n, char **par, int nop,
Note: See TracChangeset
for help on using the changeset viewer.