Changeset 7829fb in git
- Timestamp:
- May 19, 2011, 6:03:06 AM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '7725b5cfc1eaf99630826ecc59f559d3b6831c24')
- Children:
- 91446172434395b0770c641bab356bc95a9460a8
- Parents:
- 7d1a268aa1413587bde9251dc496aa635a2a84e4
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-19 06:03:06+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:10+01:00
- Location:
- libpolys/polys
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/matpol.h
r7d1a26 r7829fb 30 30 #define MATELEM(mat,i,j) ((mat)->m)[MATCOLS((mat)) * ((i)-1) + (j)-1] 31 31 }; 32 33 typedef ip_smatrix * matrix; 32 34 33 35 matrix mpNew(int r, int c); -
libpolys/polys/monomials/ring.cc
r7d1a26 r7829fb 11 11 #include <math.h> 12 12 13 // #include <polys/options.h>14 13 #include <omalloc/omalloc.h> 15 14 #include <misc/options.h> 16 #include <polys/monomials/ring.h> 15 #include <misc/intvec.h> 16 17 #include <coeffs/numbers.h> 18 #include <coeffs/coeffs.h> 19 17 20 #include <polys/monomials/p_polys.h> 18 21 #include <polys/simpleideals.h> 19 #include <coeffs/numbers.h>20 22 // #include <???/febase.h> 21 23 // #include <???/intvec.h> 22 24 #include <polys/ext_fields/longalg.h> 23 25 #include <polys/ext_fields/longtrans.h> 24 #include <coeffs/ffields.h>26 // #include <coeffs/ffields.h> 25 27 #include <polys/monomials/ring.h> 26 28 #include <polys/monomials/maps.h> … … 30 32 31 33 #include <polys/matpol.h> 34 35 #include <polys/monomials/ring.h> 32 36 33 37 #ifdef HAVE_PLURAL -
libpolys/polys/simpleideals.cc
r7d1a26 r7829fb 17 17 #include <misc/intvec.h> 18 18 19 #include <coeffs/longrat.h> 20 19 // #include <coeffs/longrat.h> 20 #include "matpol.h" 21 21 22 #include "monomials/p_polys.h" 22 23 #include "weight.h" 23 #include "matpol.h"24 #include "simpleideals.h"25 24 #include "sbuckets.h" 26 25 #include "clapsing.h" 26 27 #include "simpleideals.h" 27 28 28 29 omBin sip_sideal_bin = omGetSpecBin(sizeof(sip_sideal)); -
libpolys/polys/simpleideals.h
r7d1a26 r7829fb 10 10 #include <omalloc/omalloc.h> 11 11 #include <polys/monomials/ring.h> 12 #include <polys/matpol.h> 12 13 13 14 struct sip_sideal … … 31 32 int ncols; 32 33 }; 33 34 class ip_smatrix;35 typedef ip_smatrix * matrix;36 34 37 35 struct sideal_list;
Note: See TracChangeset
for help on using the changeset viewer.