Changeset a497a1 in git for kernel/kInline.h
- Timestamp:
- Sep 10, 2012, 8:33:35 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 36ebfaa4578b6a83a5511dbbc252bdd925f2845f
- Parents:
- fff61504bea4abfcad24fecfcec903e476caa188
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-09-10 20:33:35+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-09-10 20:41:23+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/kInline.h
rfff6150 ra497a1 22 22 23 23 #include <polys/monomials/p_polys.h> 24 #include <polys/templates/p_Procs.h>25 24 #include <polys/kbuckets.h> 26 25 … … 311 310 { 312 311 if (t_p != NULL) 313 { t_p = tailRing->p_Procs->p_Mult_nn(t_p, n, tailRing);312 { t_p = p_Mult_nn(t_p, n, tailRing); 314 313 if (p != NULL) pSetCoeff0(p, pGetCoeff(t_p)); 315 314 } … … 583 582 poly _p = (t_p != NULL ? t_p : p); 584 583 assume(_p != NULL); 585 pNext(_p) = tailRing->p_Procs->p_Mult_nn(pNext(_p), n, tailRing);584 pNext(_p) = p_Mult_nn(pNext(_p), n, tailRing); 586 585 } 587 586 } … … 598 597 poly _p = (t_p != NULL ? t_p : p); 599 598 assume(_p != NULL); 600 int shorter; 601 pNext(_p) = tailRing->p_Procs->p_Minus_mm_Mult_qq(pNext(_p), m, q,602 shorter,spNoether,603 604 pLength += lq - shorter;599 600 pNext(_p) = p_Minus_mm_Mult_qq( pNext(_p), m, q, pLength, lq, 601 spNoether, last, tailRing ); 602 // tailRing->p_Procs->p_Minus_mm_Mult_qq(pNext(_p), m, q, shorter,spNoether, tailRing, last); 603 // pLength += lq - shorter; 605 604 } 606 605 }
Note: See TracChangeset
for help on using the changeset viewer.