Changeset e4eee00 in git


Ignore:
Timestamp:
Jun 15, 2010, 2:22:03 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
78a42b1ececcafce26853ca27278a0d6bf55f401
Parents:
8df94488508373da9e8fb143885c2c49dfef0dd9
Message:
a somewhat lazy test strategy for OVERFLOW in *

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

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r8df944 re4eee00  
    10441044      b=(poly)v->CopyD(POLY_CMD); // works also for VECTOR_CMD
    10451045      if ((a!=NULL) && (b!=NULL)
    1046       && (pTotaldegree(a)+pTotaldegree(b)>=currRing->bitmask))
     1046      && (pTotaldegree(a)+pTotaldegree(b)>=si_max(255,currRing->bitmask)))
    10471047      {
    10481048        pDelete(&a);
     
    10581058    b=pCopy((poly)v->Data());
    10591059    if ((a!=NULL) && (b!=NULL)
    1060     && (pTotaldegree(a)+pTotaldegree(b)>=currRing->bitmask))
     1060    && (pTotaldegree(a)+pTotaldegree(b)>=si_max(255,currRing->bitmask)))
    10611061    {
    10621062      pDelete(&a);
Note: See TracChangeset for help on using the changeset viewer.