Changeset c616d1 in git for Singular/matpol.cc
- Timestamp:
- Sep 30, 1998, 4:12:48 PM (25 years ago)
- Branches:
- (u'spielwiese', 'a7324b6e0b44a1a8ed3fa4d9ca3e2ff210ddd52c')
- Children:
- d3e295ae509633cf6ba993a8680945f24b9ab5ec
- Parents:
- 8f14736613d731d65fa80a0322e2debe3dd2a3b0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/matpol.cc
r8f1473 rc616d1 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: matpol.cc,v 1. 19 1998-09-29 21:14:45 siebertExp $ */4 /* $Id: matpol.cc,v 1.20 1998-09-30 14:12:48 Singular Exp $ */ 5 5 6 6 /* … … 91 91 t = a->m[i]; 92 92 pNormalize(t); 93 #ifdef MDEBUG94 // b->m[i] = pDBCopy(t,f,l);95 93 b->m[i] = pCopy(t); 96 #else97 b->m[i] = pCopy(t);98 #endif99 94 } 100 95 b->rank=a->rank; … … 392 387 393 388 /* step of Bareiss */ 394 if(( row&& Bareiss->mpPivotRow(&w,row-1)) || Bareiss->mpPivotBareiss(&w))389 if(((row!=0) && Bareiss->mpPivotRow(&w,row-1)) || Bareiss->mpPivotBareiss(&w)) 395 390 { 396 391 Bareiss->mpElimBareiss(div); … … 580 575 } 581 576 } 582 p = mpDet (tmp);577 p = mpDetBareiss(tmp); 583 578 if ((k+l) & 1) p=pNeg(p); 584 579 MATELEM(result,l,k) = p; … … 1413 1408 } 1414 1409 y = nDiv(pGetCoeff(r),x); 1410 nNormalize(y); 1415 1411 pSetCoeff(r,y); 1416 1412 pIter(r);
Note: See TracChangeset
for help on using the changeset viewer.