Changeset 0b5e3d in git for kernel/polys.cc


Ignore:
Timestamp:
Mar 23, 2010, 6:21:51 PM (13 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
283d86b527147bf837a6040685999a8c1f187996
Parents:
ed5c8d1e2dbab67d9d30ee55afe96866951bb06e
Message:
Exponent_t removed

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

Legend:

Unmodified
Added
Removed
  • kernel/polys.cc

    red5c8d r0b5e3d  
    242242        return s_save;
    243243      }
    244       p_AddExp(rc,1+j, (Exponent_t)i, r);
     244      p_AddExp(rc,1+j, (long)i, r);
    245245    }
    246246    else
     
    340340      if (ii!=0)
    341341      {
    342         pAddExp(q,varnum, (Exponent_t)ii);
     342        pAddExp(q,varnum, (long)ii);
    343343        pSetm(q);
    344344      }
     
    531531// Splits *p into two polys: *q which consists of all monoms with
    532532// component == comp and *p of all other monoms *lq == pLength(*q)
    533 void pTakeOutComp(poly *r_p, Exponent_t comp, poly *r_q, int *lq)
     533void pTakeOutComp(poly *r_p, long comp, poly *r_q, int *lq)
    534534{
    535535  spolyrec pp, qq;
     
    579579}
    580580
    581 void pDecrOrdTakeOutComp(poly *r_p, Exponent_t comp, long order,
     581void pDecrOrdTakeOutComp(poly *r_p, long comp, long order,
    582582                         poly *r_q, int *lq)
    583583{
Note: See TracChangeset for help on using the changeset viewer.