Changeset e552b7 in git for kernel/maps


Ignore:
Timestamp:
Oct 23, 2018, 3:59:53 PM (6 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9fe6c3daa5d3f2f1d32882c2a883ff08668041a8
Parents:
e87bcd2cfbc77cb7e1e68007b759cc1c5425f136
Message:
naMapPoly
Location:
kernel/maps
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/maps/gen_maps.cc

    re87bcd2 re552b7  
    157157}
    158158
    159 
    160 
     159poly maMapPoly(const poly map_p, const ring map_r,const ideal image_id, const ring image_r, const nMapFunc nMap)
     160{
     161  matrix s=mpNew(map_r->N,maMaxDeg_P(map_p, map_r));
     162  poly p=maEval((map)image_id, map_p, map_r, nMap, (ideal)s, image_r);
     163  id_Delete((ideal*)&s,image_r);
     164  return p;
     165}
  • kernel/maps/gen_maps.h

    re87bcd2 re552b7  
    1212ideal maMapIdeal(const ideal map_id, const ring map_r,const ideal image_id, const ring image_r, const nMapFunc nMap);
    1313
     14/// polynomial map for poly (vector)
     15/// map_p: the poly (vector) to map
     16/// map_r: the base ring for map_p
     17/// image_id: the image of the variables
     18/// image_r: the base ring for image_id
     19/// nMap: map for coeffcients
     20poly maMapPoly(const poly map_p, const ring map_r,const ideal image_id, const ring image_r, const nMapFunc nMap);
     21
    1422poly p_SubstPoly (poly p, int var, poly image, const ring preimage_r, const ring image_r, const nMapFunc nMap, matrix cache=NULL);
    1523ideal id_SubstPoly (ideal id, int var, poly image, const ring preimage_r, const ring image_r, const nMapFunc nMap);
Note: See TracChangeset for help on using the changeset viewer.