Changeset 413dd46 in git for libpolys


Ignore:
Timestamp:
Mar 3, 2020, 12:08:44 PM (4 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'c5facdfddea2addfd91babd8b9019161dea4b695')
Children:
1e572f7d8d21c42c9a8f106693eaa75f058a8927
Parents:
cb06ace2199aca68931c89e6c242ddd8d0495182
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2020-03-03 12:08:44+01:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2020-03-03 12:27:46+01:00
Message:
fixed: changed handling of L in ordstr (same as attrib)
File:
1 edited

Legend:

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

    rcb06ac r413dd46  
    609609    if (l==nblocks)
    610610    {
    611       if (r->bitmask!=0xffff)
    612       {
    613         long mm=r->bitmask;
     611      if (r->wanted_maxExp!=0)
     612      {
     613        long mm=r->wanted_maxExp;
    614614        if (mm>MAX_INT_VAL) mm=MAX_INT_VAL;
    615615        StringAppend(",L(%ld)",mm);
     
    28022802  res->block1=block1;
    28032803  res->bitmask=exp_limit;
    2804   res->wanted_maxExp=exp_limit;
     2804  res->wanted_maxExp=r->wanted_maxExp;
    28052805  //int tmpref=r->cf->ref0;
    28062806  rComplete(res, 1);
     
    29742974    res->block1=block1;
    29752975    res->bitmask=exp_limit;
    2976     res->wanted_maxExp=exp_limit;
     2976    res->wanted_maxExp=r->wanted_maxExp;
    29772977    //int tmpref=r->cf->ref;
    29782978    rComplete(res, 1);
Note: See TracChangeset for help on using the changeset viewer.