Changeset 24a614b in git
- Timestamp:
- Sep 7, 2011, 9:07:07 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 3aa9b6373c3eba8145bd3a0a102735ba0fc847ae
- Parents:
- 895b31c1bd66c3f92ae5a8ac32a8a9758c66db7e
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-07 21:07:07+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:33+01:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/extra.cc
r895b31c r24a614b 1235 1235 else return TRUE; 1236 1236 res->rtyp=POLY_CMD; 1237 if (rIsPluralRing(currRing)) res->data=nc_p_Bracket_qq(p,q );1237 if (rIsPluralRing(currRing)) res->data=nc_p_Bracket_qq(p,q, currRing); 1238 1238 else res->data=NULL; 1239 1239 return FALSE; -
Singular/iparith.cc
r895b31c r24a614b 2691 2691 { 2692 2692 poly p = (poly)a->CopyD(POLY_CMD); // p = copy! 2693 res->data = nc_p_Bracket_qq(p,q ); // p will be destroyed!2693 res->data = nc_p_Bracket_qq(p,q, currRing); // p will be destroyed! 2694 2694 } 2695 2695 } -
kernel/kutil.cc
r895b31c r24a614b 1559 1559 // generalized prod-crit for lie-type 1560 1560 strat->cp++; 1561 Lp.p = nc_p_Bracket_qq(pCopy(p),strat->S[i] );1561 Lp.p = nc_p_Bracket_qq(pCopy(p),strat->S[i], currRing); 1562 1562 } 1563 1563 else … … 7336 7336 // // generalized prod-crit for lie-type 7337 7337 // strat->cp++; 7338 // Lp.p = nc_p_Bracket_qq(pCopy(p),q );7338 // Lp.p = nc_p_Bracket_qq(pCopy(p),q, currRing); 7339 7339 // } 7340 7340 // else -
libpolys/polys/nc/nc.h
r895b31c r24a614b 275 275 276 276 /* brackets: p will be destroyed... */ 277 poly nc_p_Bracket_qq(poly p, const poly q); 278 277 poly nc_p_Bracket_qq(poly p, const poly q, const ring r); 279 278 280 279 static inline poly nc_ReduceSpoly(const poly p1, poly p2, const ring r)
Note: See TracChangeset
for help on using the changeset viewer.