Changeset 0cf29ee in git
- Timestamp:
- Feb 16, 2011, 4:22:21 PM (13 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- 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
- Files:
-
- 3 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/structs.h
r7f2454a r0cf29ee 110 110 typedef struct snumber * number; 111 111 typedef number (*numberfunc)(number a,number b); 112 typedef number (*nMapFunc)(number a);113 112 114 113 /* C++-part */ … … 140 139 // forward for ideals.h: 141 140 struct sip_sideal; 142 struct sip_smap;143 typedef struct sip_smap * map;144 141 typedef struct sip_sideal * ideal; 145 142 -
libpolys/polys/Makefile.am
r7f2454a r0cf29ee 9 9 10 10 SOURCES = \ 11 monomials/monomials.cc monomials/p_polys.cc monomials/ring.cc \11 monomials/monomials.cc monomials/p_polys.cc monomials/ring.cc monomials/maps.cc \ 12 12 pDebug.cc pInline0.cc \ 13 13 operations/pShallowCopyDelete.cc operations/p_Mult_q.cc \ … … 26 26 templates/p_Numbers.h templates/p_Procs.h \ 27 27 templates/p_Procs_Dynamic.h templates/p_Procs_Impl.h templates/p_Procs_Set.h templates/p_Procs_Static.h \ 28 monomials/p_polys.h monomials/polys-impl.h polys.h prCopy.h prCopyMacros.h \28 monomials/p_polys.h monomials/polys-impl.h monomials/maps.h polys.h prCopy.h prCopyMacros.h \ 29 29 sbuckets.h simpleideals.h 30 30 -
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, -
libpolys/polys/monomials/ring.cc
r7f2454a r0cf29ee 26 26 // #include <???/ideals.h> 27 27 #include <polys/monomials/ring.h> 28 #include <polys/monomials/maps.h> 28 29 #include <polys/prCopy.h> 29 30 // #include "../Singular/ipshell.h"
Note: See TracChangeset
for help on using the changeset viewer.