Changeset 02c42d in git


Ignore:
Timestamp:
May 4, 2011, 7:17:53 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
Children:
af598e3e1fa791f8f0ca59a43791eddb7a4f6f27
Parents:
211146554165c4e6c498c633261b86cf0969119d
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-04 19:17:53+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:35+01:00
Message:
FIX: nGetChar -> n_nGetChar
Location:
libpolys/polys
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/OBSOLETE_pInitContent.cc

    r2111465 r02c42d  
    9090    nDelete(&h);
    9191#ifdef HAVE_FACTORY
    92     if ( (nGetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
     92    if ( (n_GetChar() == 1) || (n_GetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
    9393    {
    9494      singclap_divide_content(ph);
     
    398398//    nDelete(&h);
    399399//#ifdef HAVE_FACTORY
    400 //    if ( (nGetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
     400//    if ( (n_GetChar() == 1) || (n_GetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
    401401//    {
    402402//      pTest(ph);
     
    534534      }
    535535      nDelete(&h);
    536       if (nGetChar()==1)
     536      if (n_GetChar()==1)
    537537      {
    538538        loop
     
    639639        pIter(p);
    640640      }
    641       if (nGetChar()==1)
     641      if (n_GetChar()==1)
    642642      {
    643643        loop
  • libpolys/polys/ext_fields/longalg.cc

    r2111465 r02c42d  
    17241724#else
    17251725  {
    1726     int c=ABS(nGetChar());
     1726    int c=ABS(n_GetChar());
    17271727    if (c==1) c=0;
    17281728    setCharacteristic( c );
  • libpolys/polys/ext_fields/longtrans.cc

    r2111465 r02c42d  
    18651865  result->z = napGcd(x->z, y->z); // change from napGcd0
    18661866#else
    1867   int c=ABS(nGetChar());
     1867  int c=ABS(n_GetChar());
    18681868  if (c==1) c=0;
    18691869  setCharacteristic( c );
  • libpolys/polys/monomials/p_polys.cc

    r2111465 r02c42d  
    19051905    n_Delete(&h,r->cf);
    19061906#ifdef HAVE_FACTORY
    1907     if ( (nGetChar() == 1) || (nGetChar() < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
     1907    if ( (n_GetChar(r) == 1) || (n_GetChar(r) < 0) ) /* Q[a],Q(a),Zp[a],Z/p(a) */
    19081908    {
    19091909      singclap_divide_content(ph);
  • libpolys/polys/monomials/ring.cc

    r2111465 r02c42d  
    128128    //------------ global variables related to factory -----------------
    129129#ifdef HAVE_FACTORY
    130     //int c=ABS(nGetChar());
     130    //int c=ABS(n_GetChar());
    131131    //if (c==1) c=0;
    132132    //setCharacteristic( c );
Note: See TracChangeset for help on using the changeset viewer.