Changeset 2466f0d in git
- Timestamp:
- Sep 4, 1998, 6:06:30 PM (25 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- b95c835f584107cff0126297f44e3d7339280f29
- Parents:
- e974a23c09bd2c265c9c90d6d44e56270832bb6f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/matpol.cc
re974a2 r2466f0d 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: matpol.cc,v 1.1 7 1998-08-26 15:57:52Singular Exp $ */4 /* $Id: matpol.cc,v 1.18 1998-09-04 16:06:30 Singular Exp $ */ 5 5 6 6 /* … … 408 408 } 409 409 Bareiss->mpSaveArray(); 410 idTest((ideal)re); 410 411 delete Bareiss; 411 412 return re; … … 504 505 { 505 506 p = pCopy(MATELEM(s,1,i)); 506 pTest(p);507 507 for (j=i-1; j>=1; j--) 508 508 { … … 1052 1052 q2 = pMult(q1, pCopy(piv)); 1053 1053 } 1054 if ( q2&& div)1054 if ((q2!=NULL) && div) 1055 1055 q2 = mpDivide(q2, div); 1056 1056 a[jj] = q2; … … 1410 1410 pSetm(r); 1411 1411 } 1412 y = n IntDiv(pGetCoeff(r),x);1412 y = nDiv(pGetCoeff(r),x); 1413 1413 pSetCoeff(r,y); 1414 1414 pIter(r); 1415 1415 } while (r != NULL); 1416 //pTest(a); 1416 1417 return a; 1417 1418 } … … 1444 1445 } while (r!=NULL); 1445 1446 pFree1(h0); 1447 //pTest(a); 1446 1448 return a; 1447 1449 }
Note: See TracChangeset
for help on using the changeset viewer.