Changeset 294537 in git
- Timestamp:
- Apr 20, 2011, 6:08:03 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 0ebd7e2b6d36c0b21765218475b3441258a77b4d
- Parents:
- c5412f9a6a13ab8833d5cbe0867056162b572292
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-20 18:08:03+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:22+01:00
- Location:
- libpolys/polys/monomials
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/maps.cc
rc5412f r294537 155 155 omFreeSize((ADDRESS)monoms,l*sizeof(poly)); 156 156 } 157 if (dst_r->minpoly!=NULL) result=p MinPolyNormalize(result);157 if (dst_r->minpoly!=NULL) result=p_MinPolyNormalize(result, dst_r); 158 158 } 159 159 return result; … … 352 352 // This is a very dirty way to cancel monoms whose number equals the 353 353 // MinPoly 354 poly p MinPolyNormalize(poly p, const ring r)355 { 356 number one = n_Init(1, r->cf);354 poly p_MinPolyNormalize(poly p, const ring r) 355 { 356 number one = n_Init(1, r->cf); 357 357 spolyrec rp; 358 358 -
libpolys/polys/monomials/maps.h
rc5412f r294537 32 32 ideal idSubstPoly(ideal id, int n, poly e); 33 33 34 poly p MinPolyNormalize(poly p);34 poly p_MinPolyNormalize(poly p, const ring r); 35 35 int maMaxDeg_P(poly p,ring preimage_r); 36 36 int maMaxDeg_Ma(ideal a,ring preimage_r);
Note: See TracChangeset
for help on using the changeset viewer.