Changeset 7f96f2 in git


Ignore:
Timestamp:
Jul 30, 2001, 10:48:36 AM (22 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
fa01b75313d60b772595052a5fd57fb8c2ec49e2
Parents:
0b5f43b241273a85beeb00e27706018ee704a303
Message:
*hannes: changes from 2-0-branch


git-svn-id: file:///usr/local/Singular/svn/trunk@5551 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ring.cc

    r0b5f43 r7f96f2  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.167 2001-07-30 08:02:39 mschulze Exp $ */
     4/* $Id: ring.cc,v 1.168 2001-07-30 08:48:36 Singular Exp $ */
    55
    66/*
     
    128128  {
    129129    sLastPrinted.CleanUp();
     130    memset(&sLastPrinted,0,sizeof(sleftv));
    130131  }
    131132
     
    146147  {
    147148    sLastPrinted.CleanUp();
     149    memset(&sLastPrinted,0,sizeof(sleftv));
    148150  }
    149151
     
    20302032
    20312033// return TRUE if p->exp[r->pOrdIndex] holds total degree of p */
    2032 BOOLEAN rOrd_is_Totaldegree_Ordering(ring r =currRing)
     2034BOOLEAN rOrd_is_Totaldegree_Ordering(ring r)
    20332035{
    20342036  // Hmm.... what about Syz orderings?
     
    27372739    case ringorder_ws:
    27382740    case ringorder_Ws:
    2739       {
    2740         if (r->wvhdl[o]!=NULL)
    2741         {
    2742           int i;
    2743           for(i=r->block1[o]-r->block0[o];i>=0;i--)
    2744             if (r->wvhdl[o][i]<0) { r->MixedOrder=TRUE; break; }
    2745         }
     2741      if (r->wvhdl[o]!=NULL)
     2742      {
     2743        int i;
     2744        for(i=r->block1[o]-r->block0[o];i>=0;i--)
     2745          if (r->wvhdl[o][i]<0) { r->MixedOrder=TRUE; break; }
    27462746      }
    27472747      break;
     
    34423442  if (r->VarOffset==NULL) PrintS(" NULL\n");
    34433443  else
    3444      for(j=0;j<=r->N;j++)
    3445        Print("  v%d at e-pos %d, bit %d\n",
    3446              j,r->VarOffset[j] & 0xffffff, r->VarOffset[j] >>24);
     3444    for(j=0;j<=r->N;j++)
     3445      Print("  v%d at e-pos %d, bit %d\n",
     3446            j,r->VarOffset[j] & 0xffffff, r->VarOffset[j] >>24);
    34473447  Print("divmask=%p\n", r->divmask);
    34483448  PrintS("ordsgn:\n");
     
    39263926    LL->m[i].rtyp=STRING_CMD;
    39273927    LL->m[i].data=(void *)omStrDup(r->names[i]);
    3928   } 
     3928  }
    39293929  // ----------------------------------------
    39303930  LL=(lists)omAlloc0Bin(slists_bin);
     
    39633963        default: /* do nothing */;
    39643964      }
    3965     } 
     3965    }
    39663966    LL->m[i].data=(void *)LLL;
    39673967  }
Note: See TracChangeset for help on using the changeset viewer.