Changeset 294537 in git


Ignore:
Timestamp:
Apr 20, 2011, 6:08:03 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
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
Message:
FIX: pMinPolyNormalize -> p_MinPolyNormalize
Location:
libpolys/polys/monomials
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/monomials/maps.cc

    rc5412f r294537  
    155155      omFreeSize((ADDRESS)monoms,l*sizeof(poly));
    156156    }
    157     if (dst_r->minpoly!=NULL) result=pMinPolyNormalize(result);
     157    if (dst_r->minpoly!=NULL) result=p_MinPolyNormalize(result, dst_r);
    158158  }
    159159  return result;
     
    352352// This is a very dirty way to cancel monoms whose number equals the
    353353// MinPoly
    354 poly pMinPolyNormalize(poly p, const ring r)
    355 {
    356   number one = n_Init(1,r->cf);
     354poly p_MinPolyNormalize(poly p, const ring r)
     355{
     356  number one = n_Init(1, r->cf);
    357357  spolyrec rp;
    358358
  • libpolys/polys/monomials/maps.h

    rc5412f r294537  
    3232ideal  idSubstPoly(ideal id, int n, poly e);
    3333
    34 poly pMinPolyNormalize(poly p);
     34poly p_MinPolyNormalize(poly p, const ring r);
    3535int maMaxDeg_P(poly p,ring preimage_r);
    3636int maMaxDeg_Ma(ideal a,ring preimage_r);
Note: See TracChangeset for help on using the changeset viewer.