Changeset 69618d in git


Ignore:
Timestamp:
Feb 7, 2000, 6:22:07 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
c01d03a2d29234c0b04fec15e4de017e64e9d6b5
Parents:
68cf0679b21833f59029fca1df0a0e16b01f5ff1
Message:
*hannes: SHIFTED_EXP


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

Legend:

Unmodified
Added
Removed
  • Singular/polys-impl.cc

    r68cf06 r69618d  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys-impl.cc,v 1.34 1999-11-24 14:07:23 obachman Exp $ */
     4/* $Id: polys-impl.cc,v 1.35 2000-02-07 17:21:48 Singular Exp $ */
    55
    66/***************************************************************
     
    817817    }
    818818    int i=pVariables;
     819#ifndef HAVE_SHIFTED_EXPONENTS
     820    // can not hapen for SHIFTED_EXPONENTS
    819821    for(;i;i--)
    820822    {
     
    825827      }
    826828    }
     829#endif
    827830    if (pGetComp(p)<0)
    828831    {
  • Singular/ring.cc

    r68cf06 r69618d  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.96 2000-01-26 18:10:53 Singular Exp $ */
     4/* $Id: ring.cc,v 1.97 2000-02-07 17:22:07 Singular Exp $ */
    55
    66/*
     
    20392039        }
    20402040        else
    2041         if ((r->typ[j].ord_typ!=ro_syzcomp)
    2042          && (r->VarOffset[i]/(sizeof(long)/sizeof(Exponent_t)))
    2043            == (size_t)r->typ[j].data.dp.place)
    2044           Warn("ordrec %d conflicts with var %d\n",j,i);
     2041        #ifdef HAVE_SHIFTED_EXPONENTS
     2042          if ((r->typ[j].ord_typ!=ro_syzcomp)
     2043          && (r->VarOffset[i] == r->typ[j].data.dp.place))
     2044            Warn("ordrec %d conflicts with var %d\n",j,i);
     2045        #else
     2046          if ((r->typ[j].ord_typ!=ro_syzcomp)
     2047           && (r->VarOffset[i]/(sizeof(long)/sizeof(Exponent_t)))
     2048             == (size_t)r->typ[j].data.dp.place)
     2049            Warn("ordrec %d conflicts with var %d\n",j,i);
     2050        #endif
    20452051      }
    20462052    }
Note: See TracChangeset for help on using the changeset viewer.