Changeset 997e23 in git
- Timestamp:
- May 31, 2010, 11:27:31 AM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 739cb950f14d52e78c8e8ee0370fc4cf8625ffdb
- Parents:
- 652a47948292e84db4e972ecd607184d09345d6e
- Location:
- kernel
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/fast_maps.cc
r652a47 r997e23 17 17 #include "ring.h" 18 18 #include "febase.h" 19 #include "sbuckets.h" 19 20 #include "fast_maps.h" 20 21 -
kernel/matpol.cc
r652a47 r997e23 280 280 if ((bkj=MATELEM(b,k,j))!=NULL) 281 281 { 282 282 poly *cij=&(MATELEM(c,i,j)); 283 283 poly s = ppMult_qq(aik /*MATELEM(a,i,k)*/, bkj/*MATELEM(b,k,j)*/); 284 284 if (/*MATELEM(c,i,j)*/ (*cij)==NULL) (*cij)=s; -
kernel/ncSAMult.cc
r652a47 r997e23 31 31 32 32 #include "options.h" 33 #include "p_Procs.h" 33 34 #include <ncSAMult.h> // for CMultiplier etc classes 34 35 #include <sca.h> // for SCA -
kernel/p_polys.cc
r652a47 r997e23 218 218 if( vo != -1) // TODO: optimize: can be done once! 219 219 { 220 p_SetExp(p, p_GetExp(p, i, r), r, vo); // copy put them verbatim221 assume( p_GetExp(p, r, vo) == p_GetExp(p, i, r) ); // copy put them verbatim220 p_SetExp(p, p_GetExp(p, i, r), vo, r); // copy put them verbatim 221 assume( p_GetExp(p, vo, r) == p_GetExp(p, i, r) ); // copy put them verbatim 222 222 } 223 223 } … … 231 231 if( vo != -1) // TODO: optimize: can be done once! 232 232 { 233 assume( p_GetExp(p, r, vo) == p_GetExp(p, i, r) ); // copy put them verbatim233 assume( p_GetExp(p, vo, r) == p_GetExp(p, i, r) ); // copy put them verbatim 234 234 } 235 235 } … … 302 302 const int vo = pVarOffset[i]; 303 303 if( vo != -1) // TODO: optimize: can be done once! 304 assume( p_GetExp(p, r, vo) == (p_GetExp(p, i, r) + p_GetExp(pp, r, vo)) );304 assume( p_GetExp(p, vo, r) == (p_GetExp(p, i, r) + p_GetExp(pp, vo, r)) ); 305 305 } 306 306 // TODO: how to check this for computed values??? -
kernel/polys.cc
r652a47 r997e23 19 19 #include "polys.h" 20 20 #include "ring.h" 21 #include "sbuckets.h" 21 22 22 23 #ifdef HAVE_PLURAL
Note: See TracChangeset
for help on using the changeset viewer.