Changeset 32a34c2 in git for kernel/polys.cc
- Timestamp:
- Jun 20, 2007, 11:59:47 AM (16 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 230e188837a7d73c2e2b4ece3988a2fc6cd2ad2d
- Parents:
- 1e14068a6b92967fd306e5824a2b9a14d4e921ac
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.cc
r1e1406 r32a34c2 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys.cc,v 1.2 0 2007-06-20 09:39:24wienand Exp $ */4 /* $Id: polys.cc,v 1.21 2007-06-20 09:59:47 wienand Exp $ */ 5 5 6 6 /* … … 705 705 { 706 706 c = nDiv(pGetCoeff(p1), k); 707 nDelete( pGetCoeff(p1));707 nDelete(&pGetCoeff(p1)); 708 708 pSetCoeff0(p1, c); 709 709 h = pNext(p1); … … 711 711 { 712 712 c = nDiv(pGetCoeff(h), k); 713 nDelete( pGetCoeff(h));713 nDelete(&pGetCoeff(h)); 714 714 pSetCoeff0(h, c); 715 715 pIter(h);
Note: See TracChangeset
for help on using the changeset viewer.