Changeset 31b843 in git
- Timestamp:
- Jan 22, 1999, 7:18:48 PM (25 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 0d84792e7fd8a4f54042b516cd1476ced07c20dd
- Parents:
- 3eccafa7348c8664110095a2ba5742e73059962c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r3eccafa r31b843 2498 2498 static BOOLEAN jjHIGHCORNER(leftv res, leftv v) 2499 2499 { 2500 assumeStdFlag(v); 2500 2501 ideal I=(ideal)v->Data(); 2501 2502 BOOLEAN *UsedAxis=(BOOLEAN *)Alloc0(pVariables*sizeof(BOOLEAN)); 2502 2503 int i,n; 2504 poly po; 2503 2505 for(i=IDELEMS(I)-1;i>=0;i--) 2504 2506 { 2505 if((n=pIsPurePower(I->m[i]))!=0) UsedAxis[n-1]=TRUE; 2507 po=I->m[i]; 2508 if ((po!=NULL) &&((n=pIsPurePower(po))!=0)) UsedAxis[n-1]=TRUE; 2506 2509 } 2507 2510 for(i=pVariables-1;i>=0;i--) … … 2514 2517 return FALSE; 2515 2518 } 2516 po ly po=NULL;2519 po=NULL; 2517 2520 scComputeHC(I,0,po); 2518 2521 if (po!=NULL)
Note: See TracChangeset
for help on using the changeset viewer.