Changeset cc4cc80 in git
- Timestamp:
- Nov 22, 2012, 6:13:04 PM (10 years ago)
- 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
- Location:
- libpolys/polys
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/kbuckets.cc
re43dc3 rcc4cc80 1125 1125 1126 1126 assume(l1==pLength(a1)); 1127 #if 0 1127 1128 BOOLEAN backuped=FALSE; 1128 1129 number coef; 1129 #if 01130 1130 //@Viktor, don't ignore coefficients on monomials 1131 1131 if(l1==1) { … … 1143 1143 //} 1144 1144 } 1145 1145 #endif 1146 1146 1147 1147 kBucket_Minus_m_Mult_p(bucket, lm, a1, &l1, spNoether); 1148 1148 1149 #if 0 1149 1150 if (backuped) 1150 1151 p_SetCoeff0(a1,coef,r); 1152 #endif 1153 1151 1154 p_LmDelete(&lm, r); 1152 1155 if (reset_vec) p_SetCompP(a1, 0, r); -
libpolys/polys/nc/ncSAFormula.cc
re43dc3 rcc4cc80 215 215 216 216 217 CFormulaPowerMultiplier::CFormulaPowerMultiplier(ring r): m_ BaseRing(r), m_NVars(r->N)217 CFormulaPowerMultiplier::CFormulaPowerMultiplier(ring r): m_NVars(r->N), m_BaseRing(r) 218 218 { 219 219 #if OUTPUT -
libpolys/polys/nc/ncSAFormula.h
re43dc3 rcc4cc80 38 38 39 39 public: 40 inline constint NVars() const { return m_NVars; }41 inline constring GetBasering() const { return m_BaseRing; }40 inline int NVars() const { return m_NVars; } 41 inline ring GetBasering() const { return m_BaseRing; } 42 42 43 43 CFormulaPowerMultiplier(ring r); -
libpolys/polys/nc/ncSAMult.cc
re43dc3 rcc4cc80 883 883 884 884 // TODO: review this! 885 if( (v == j))885 if( v == j ) 886 886 { 887 887 poly p = p_Head(pMonom, r); -
libpolys/polys/nc/ncSAMult.h
re43dc3 rcc4cc80 38 38 virtual ~CMultiplier() {}; 39 39 40 constring GetBasering() const { return m_basering; };40 inline ring GetBasering() const { return m_basering; }; 41 41 inline int NVars() const { return m_NVars; } 42 42
Note: See TracChangeset
for help on using the changeset viewer.