Changeset cc4cc80 in git


Ignore:
Timestamp:
Nov 22, 2012, 6:13:04 PM (10 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
32a76d8ff1ea7276dcd4a51110cc4bfb4506c97f
Parents:
e43dc39725c5d5b404d7ba9374a3c75ad9c923fb
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-22 18:13:04+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-11-22 20:43:02+01:00
Message:
Eliminate compiler warnings
Location:
libpolys/polys
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/kbuckets.cc

    re43dc3 rcc4cc80  
    11251125
    11261126  assume(l1==pLength(a1));
     1127#if 0
    11271128  BOOLEAN backuped=FALSE;
    11281129  number coef;
    1129   #if 0
    11301130  //@Viktor, don't ignore coefficients on monomials
    11311131  if(l1==1) {
     
    11431143    //}
    11441144  }
    1145   #endif
     1145#endif
    11461146
    11471147  kBucket_Minus_m_Mult_p(bucket, lm, a1, &l1, spNoether);
    11481148
     1149#if 0
    11491150  if (backuped)
    11501151    p_SetCoeff0(a1,coef,r);
     1152#endif
     1153
    11511154  p_LmDelete(&lm, r);
    11521155  if (reset_vec) p_SetCompP(a1, 0, r);
  • libpolys/polys/nc/ncSAFormula.cc

    re43dc3 rcc4cc80  
    215215
    216216
    217 CFormulaPowerMultiplier::CFormulaPowerMultiplier(ring r): m_BaseRing(r), m_NVars(r->N)
     217CFormulaPowerMultiplier::CFormulaPowerMultiplier(ring r): m_NVars(r->N), m_BaseRing(r)
    218218{
    219219#if OUTPUT 
  • libpolys/polys/nc/ncSAFormula.h

    re43dc3 rcc4cc80  
    3838
    3939  public:
    40     inline const int NVars() const { return m_NVars; }
    41     inline const ring GetBasering() const { return m_BaseRing; }
     40    inline int NVars() const { return m_NVars; }
     41    inline ring GetBasering() const { return m_BaseRing; }
    4242
    4343    CFormulaPowerMultiplier(ring r);
  • libpolys/polys/nc/ncSAMult.cc

    re43dc3 rcc4cc80  
    883883
    884884  // TODO: review this!
    885   if( (v == j) )
     885  if( v == j )
    886886  {
    887887    poly p = p_Head(pMonom, r);   
  • libpolys/polys/nc/ncSAMult.h

    re43dc3 rcc4cc80  
    3838    virtual ~CMultiplier() {};
    3939
    40     const ring GetBasering() const { return m_basering; };
     40    inline ring GetBasering() const { return m_basering; };
    4141    inline int NVars() const { return m_NVars; }
    4242
Note: See TracChangeset for help on using the changeset viewer.