Changeset 643b538 in git


Ignore:
Timestamp:
Aug 16, 2011, 7:32:26 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
1561388b356b908332f27cb05700d8daee4eb443
Parents:
ca9096f077e5b63d5ae455da7c5f65d1360bb6ec
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-16 19:32:26+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:22+01:00
Message:
FIX: fixing unfixed assumes and ther stuff for debug version of Singular
Location:
Singular
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    rca9096f r643b538  
    46004600  }
    46014601
    4602   assume(u_id->rank>=idRankFreeModule(u_id));
     4602  assume(u_id->rank>=id_RankFreeModule(u_id, currRing));
    46034603  res->data=(char *)t_rep_gb(currRing,
    46044604    u_id,u_id->rank);
     
    59815981    if (rField_is_Extension(currRing))
    59825982    {
    5983       assume(currRing->extRing!=NULL);
     5983      assume(currRing->cf->extRing!=NULL);
    59845984      number n = pGetCoeff(p);
    59855985      ringvar=- n_IsParam(n, currRing);
  • Singular/ipshell.cc

    rca9096f r643b538  
    26872687      }
    26882688    }
    2689     if (/* idRankFreeModule(trueres[0]) */ trueres[0] > 0)
     2689    if (/* id_RankFreeModule(trueres[0], currRing) */ trueres[0] > 0)
    26902690      typ0 = MODUL_CMD;
    26912691    if (syzstr->weights!=NULL)
  • Singular/walk.cc

    rca9096f r643b538  
    592592static inline int MwalkWeightDegree(poly p, intvec* weight_vector)
    593593{
    594   assume(weight_vector->length() >= pVariables);
     594  assume(weight_vector->length() >= currRing->N);
    595595  int max = 0, maxtemp;
    596596
Note: See TracChangeset for help on using the changeset viewer.