Changeset 7d27c2 in git for libpolys/polys/simpleideals.cc


Ignore:
Timestamp:
Mar 15, 2016, 11:44:33 AM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
Children:
7eb464ef99fa9bcf027942ff701df2156a895acf
Parents:
23812d3dd3a69ed0874b01c271d1908acd7f0f055656667e687146a40c18764c718fd74005adf0be
Message:
Merge pull request #752 from adipopescu/Dimension_Integers

fix: dim int crash
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/simpleideals.cc

    r5656667 r7d27c2  
    11741174      pIter(p);
    11751175      pNext(h)=NULL;
    1176       cp = si_max((long)1,p_GetComp(h, R));     // if used for ideals too
     1176      cp = si_max(1L,p_GetComp(h, R));     // if used for ideals too
    11771177      //cp = p_GetComp(h,R);
    11781178      p_SetComp(h,0,R);
     
    12811281  {
    12821282    p=F[i]=P[i];
    1283     cmax=si_max(cmax,(long)p_MaxComp(p,R));
     1283    cmax=si_max(cmax,p_MaxComp(p,R));
    12841284  }
    12851285  cmax++;
Note: See TracChangeset for help on using the changeset viewer.