Changeset 31b843 in git


Ignore:
Timestamp:
Jan 22, 1999, 7:18:48 PM (25 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
0d84792e7fd8a4f54042b516cd1476ced07c20dd
Parents:
3eccafa7348c8664110095a2ba5742e73059962c
Message:
*hannes: minor fixes to highcorner


git-svn-id: file:///usr/local/Singular/svn/trunk@2812 2c84dea3-7e68-4137-9b89-c4e89433aadc
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r3eccafa r31b843  
    24982498static BOOLEAN jjHIGHCORNER(leftv res, leftv v)
    24992499{
     2500  assumeStdFlag(v);
    25002501  ideal I=(ideal)v->Data();
    25012502  BOOLEAN *UsedAxis=(BOOLEAN *)Alloc0(pVariables*sizeof(BOOLEAN));
    25022503  int i,n;
     2504  poly po;
    25032505  for(i=IDELEMS(I)-1;i>=0;i--)
    25042506  {
    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;
    25062509  }
    25072510  for(i=pVariables-1;i>=0;i--)
     
    25142517    return FALSE;
    25152518  }
    2516   poly po=NULL;
     2519  po=NULL;
    25172520  scComputeHC(I,0,po);
    25182521  if (po!=NULL)
Note: See TracChangeset for help on using the changeset viewer.