Changeset 74dcead in git
- Timestamp:
- Jun 30, 2015, 12:33:49 PM (8 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 43b04d2d8385c988fe1b69e545f48f527a9e2be1f34cd445520f5220554ca71a6324d2a0ecd2c7f6
- Parents:
- 2a4231766997cb703074cd965636c35b364d526d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/monomials/p_polys.cc
r2a4231 r74dcead 3847 3847 if( !DENIS1((fraction)z) ) 3848 3848 { 3849 if (p_IsConstant(DEN((fraction)z),srcExtRing)) 3850 { 3851 number n=pGetCoeff(DEN((fraction)z)); 3852 zz=p_Div_nn(zz,n,srcExtRing); 3853 p_Normalize(zz,srcExtRing); 3854 } 3855 else 3849 if (!p_IsConstant(DEN((fraction)z),srcExtRing)) 3856 3850 WarnS("Not defined: Cannot map a rational fraction and make a polynomial out of it! Ignoring the denumerator."); 3857 3851 } … … 3885 3879 qq = p_PermPoly(zz, par_perm-1, srcExtRing, dst, nMap, NULL, rVar (srcExtRing)-1); 3886 3880 3881 if(nCoeff_is_transExt(srcCf) 3882 && (!DENIS1((fraction)z)) 3883 && p_IsConstant(DEN((fraction)z),srcExtRing)) 3884 { 3885 number n=nMap(pGetCoeff(DEN((fraction)z)),srcExtRing->cf, dstCf); 3886 qq=p_Div_nn(qq,n,dst); 3887 n_Delete(&n,dstCf); 3888 p_Normalize(qq,dst); 3889 } 3887 3890 p_Test (qq, dst); 3888 3889 // poly p_PermPoly (poly p, int * perm, const ring oldRing, const ring dst, nMapFunc nMap, int *par_perm, int OldPar)3890 3891 // assume( FALSE ); WarnS("longalg missing 2");3892 3891 3893 3892 return qq;
Note: See TracChangeset
for help on using the changeset viewer.