Ignore:
Timestamp:
Apr 21, 2011, 1:34:10 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
59a62bd935a023662ba918abaefcc861c4adbe81
Parents:
0b7bf7ebce7bb8127ebbb274e87efef8dce670c7
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-04-21 13:34:10+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:24+01:00
Message:
FIX: moved P/minpoly/parameters from ring to coeff
File:
1 edited

Legend:

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

    r0b7bf7 r01c1d0  
    155155      omFreeSize((ADDRESS)monoms,l*sizeof(poly));
    156156    }
    157     if (dst_r->minpoly!=NULL) result=p_MinPolyNormalize(result, dst_r);
     157    if (dst_r->cf->minpoly!=NULL) result=p_MinPolyNormalize(result, dst_r);
    158158  }
    159159  return result;
     
    270270  int *perm=(int *)omAlloc0((r->N+1)*sizeof(int));
    271271  //int *par_perm=(int *)omAlloc0(rPar(r)*sizeof(int));
    272   maFindPerm(r->names,r->N, r->parameter, r->P,
    273              dst_r->names,dst_r->N,dst_r->parameter, dst_r->P,
    274              perm,NULL, dst_r->ch);
     272  maFindPerm(r->names, rVar(r), r->cf->parameter, rPar(r),
     273             dst_r->names, rVar(dst_r),dst_r->cf->parameter, rPar(dst_r),
     274             perm,NULL, dst_r->cf->ch);
    275275  poly res=p_PermPoly(p,perm,r,dst_r, nMap /*,par_perm,rPar(r)*/);
    276276  omFreeSize((ADDRESS)perm,(r->N+1)*sizeof(int));
Note: See TracChangeset for help on using the changeset viewer.