Changeset 27667b in git


Ignore:
Timestamp:
Jul 21, 2010, 4:09:03 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
19191129ddddff4c6aac6c8ee9304d5336e4acbf
Parents:
5e7ae8f377ff9a8a6b1db417192f93f914fd49a3
Message:
long exponents

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

Legend:

Unmodified
Added
Removed
  • kernel/polys0.cc

    r5e7ae8 r27667b  
    5454  {
    5555    {
    56       int ee = p_GetExp(p,i+1,r);
    57       if (ee!=0)
     56      long ee = p_GetExp(p,i+1,r);
     57      if (ee!=0L)
    5858      {
    5959        if (wroteCoef)
     
    6363        writeGen=TRUE;
    6464        StringAppendS(rRingVar(i, r));
    65         if (ee != 1)
     65        if (ee != 1L)
    6666        {
    6767          if (rShortOut(r)==0) StringAppendS("^");
    68           StringAppend("%d", ee);
     68          StringAppend("%ld", ee);
    6969        }
    7070      }
Note: See TracChangeset for help on using the changeset viewer.