Changeset dad9fb in git for libpolys/polys/monomials


Ignore:
Timestamp:
Mar 15, 2012, 5:26:46 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
8066cd9340c30bf555310cdb3ca4a9c82b4f3e92a82c308b8fbf35f5d32c156ead224188e2610f7e
Parents:
788fdfc919bcf38d8b469a0f59374abf9046985dd841a16156c2e0b2a5e731384a7a5e454dffe2d8
Message:
Merge pull request #82 from mmklee/bug_fixes_sw

Bug fixes sw
Location:
libpolys/polys/monomials
Files:
3 edited

Legend:

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

    r788fdf rdad9fb  
    34143414       return NULL;
    34153415
    3416     if( !DENIS1(z) )
    3417       WarnS("Not implemented yet: Cannot permute a rational fraction and make a polynomial out of it! Ignorring the denumerator.");
     3416    //if( !DENIS1(z) )
     3417      //WarnS("Not implemented yet: Cannot permute a rational fraction and make a polynomial out of it! Ignorring the denumerator.");
    34183418  } else
    34193419     {
  • libpolys/polys/monomials/p_polys.h

    rd841a1 rdad9fb  
    437437    switch(r->typ[i].ord_typ)
    438438    {
     439      case ro_am:
    439440      case ro_wp_neg:
    440441        return (((long)((p)->exp[r->pOrdIndex]))-POLY_NEGWEIGHT_OFFSET);
  • libpolys/polys/monomials/ring.cc

    r788fdf rdad9fb  
    795795        r1->cf->ref++;
    796796      }
     797      else if ((getCoeffType (r2->cf)==n_algExt || getCoeffType (r2->cf)==n_transExt) && rChar(r2) == rChar(r1))
     798      {
     799        /*AlgExtInfo extParam;
     800        extParam.r = r2->cf->extRing;
     801        extParam.i = r2->cf->extRing->minideal;*/
     802        tmpR.cf=r2->cf;
     803        r2->cf->ref++;
     804      }
    797805      else
    798806      {
     
    809817    {
    810818      if (getCoeffType(r2->cf)==n_Zp)
     819      {
     820        tmpR.cf=r2->cf;
     821        r2->cf->ref++;
     822      }
     823      else if (getCoeffType(r2->cf)==n_algExt || getCoeffType(r2->cf)==n_transExt)
    811824      {
    812825        tmpR.cf=r2->cf;
Note: See TracChangeset for help on using the changeset viewer.