Changeset de0a2a in git


Ignore:
Timestamp:
Feb 28, 2012, 7:33:43 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
986225e4b879695a1828864dc45519cbf8a0f681
Parents:
fc27468621ec9097867dc720d52d6c16471de8d3
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-28 19:33:43+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-05 17:42:52+01:00
Message:
minor improvements to IS ordering

chg: better rDebugPrint output
chg: better pSetm_General (assumes on better places)
Location:
libpolys/polys/monomials
Files:
2 edited

Legend:

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

    rfc2746 rde0a2a  
    337337            c--;
    338338
    339             assume( c < IDELEMS(F) ); // What about others???
    340 
    341339            if( c >= IDELEMS(F) )
    342340              break;
    343341
     342            assume( c < IDELEMS(F) ); // What about others???
     343           
    344344            const poly pp = F->m[c]; // get reference monomial!!!
    345345
     346            if(pp == NULL)
     347              break;
     348           
    346349            assume(pp != NULL);
    347350
     
    352355#endif
    353356#endif
    354             if(pp == NULL) break;
    355357
    356358            const int end = o->data.is.end;
  • libpolys/polys/monomials/ring.cc

    rfc2746 rde0a2a  
    40754075//      for( int k = 0; k <= r->N; k++) if (r->typ[j].data.is.pVarOffset[k] != -1) Print("[%2d]: %04x; ", k, r->typ[j].data.is.pVarOffset[k]);
    40764076
    4077       Print("  limit %d\n",r->typ[j].data.is.limit);
     4077      Print("  limit %d",r->typ[j].data.is.limit);
    40784078      #ifndef NDEBUG
    40794079      //PrintS("  F: ");idShow(r->typ[j].data.is.F, r, r, 1);
    40804080      #endif
    40814081
    4082       PrintS("weights: ");
     4082      PrintS(", weights: ");
    40834083
    40844084      if( r->typ[j].data.is.componentWeights == NULL )
Note: See TracChangeset for help on using the changeset viewer.