Changeset f7f346 in git


Ignore:
Timestamp:
Jun 1, 2015, 10:08:40 AM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
3cc89c5198f9b473715e72f381c306af10bc327d
Parents:
9a871d2777a734b6027f01a9b7eb031c4a77b06d
Message:
fix alignment of sLObject
Location:
kernel/GBEngine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kutil.cc

    r9a871d rf7f346  
    15071507  pLcm(p,strat->S[i],Lp.lcm);
    15081508#elif defined(HAVE_RATGRING)
    1509   //  if (rIsRatGRing(currRing))
     1509  if (rIsRatGRing(currRing))
    15101510  pLcmRat(p,strat->S[i],Lp.lcm, currRing->real_var_start); // int rat_shift
     1511  else
     1512  pLcm(p,strat->S[i],Lp.lcm);
    15111513#endif
    15121514  pSetm(Lp.lcm);
  • kernel/GBEngine/kutil.h

    r9a871d rf7f346  
    185185public:
    186186  unsigned long sev;
    187   unsigned long checked; // this is the index of S up to which
     187  poly  p1,p2; /*- the pair p comes from,
     188                 lm(pi) in currRing, tail(pi) in tailring -*/
     189
     190  poly  lcm;   /*- the lcm of p1,p2 -*/
     191  kBucket_pt bucket;
     192  int   i_r1, i_r2;
     193  unsigned checked; // this is the index of S up to which
    188194                      // the corresponding LObject was already checked in
    189195                      // critical pair creation => when entering the
     
    194200                      // detected by Buchberger's Product Criterion and can be
    195201                      // deleted
    196   poly  p1,p2; /*- the pair p comes from,
    197                  lm(pi) in currRing, tail(pi) in tailring -*/
    198 
    199   poly  lcm;   /*- the lcm of p1,p2 -*/
    200   kBucket_pt bucket;
    201   int   i_r1, i_r2;
    202202
    203203  // initialization
Note: See TracChangeset for help on using the changeset viewer.