Changeset 76fead in git


Ignore:
Timestamp:
Jul 18, 2011, 5:45:16 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
c6474a786b054e209421ddeaf8aa820904161457
Parents:
c15fb027c86f5b034e29b00b2a1d48cc95720689
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-07-18 17:45:16+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:39:56+01:00
Message:
syntax fix after rebase
Location:
libpolys/polys
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/mod_raw.cc

    rc15fb0 r76fead  
    8484  }
    8585
    86   if( (strncmp(buf, &mach_o_module[0], 4)==0)) /* Mach-O bundle */
     86  if( (strncmp(buf, (const char *)mach_O, 4)==0)) /* Mach-O bundle */
    8787  {
    8888    LT = LT_MACH_O;
  • libpolys/polys/monomials/p_polys.cc

    rc15fb0 r76fead  
    37753775#include <polys/templates/p_Delete__T.cc>
    37763776
    3777 #ifdef HAVE_RINGS
    3778 /* TRUE iff LT(f) | LT(g) */
    3779 BOOLEAN p_DivisibleByRingCase(poly f, poly g, const ring r)
    3780 {
    3781   int exponent;
    3782   for(int i = (int)r->N; i; i--)
    3783   {
    3784     exponent = p_GetExp(g, i, r) - p_GetExp(f, i, r);
    3785     if (exponent < 0) return FALSE;
    3786   }
    3787   return n_DivBy(p_GetCoeff(g,r), p_GetCoeff(f,r),r->cf);
    3788 }
    3789 #endif
  • libpolys/polys/nc/old.gring.cc

    rc15fb0 r76fead  
    15911591    C2=n_Copy(C2, r);
    15921592  }
    1593   nDelete(&C);
     1593  n_Delete(&C,r);
    15941594  M1=p_Mult_nn(M1,C2,r);
    15951595  p_SetCoeff(m1,C2,r);
Note: See TracChangeset for help on using the changeset viewer.