Changeset 1f637e in git for kernel/kspoly.cc


Ignore:
Timestamp:
Jul 19, 2011, 5:11:57 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
1c4e9a5798bda4bc92d0013041b99005a50a7d7c
Parents:
6ed8c424bfe6fd9dc397bfdde3e8acf884469342
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-07-19 17:11:57+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:52:40+01:00
Message:
FIX: replaced pVariables by currRing->N...
ADD: added 'void rChangeCurrRing(ring r);' to polys/polys.h
CHG: started changing gr_kstd2.cc and syz*.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/kspoly.cc

    r6ed8c4 r1f637e  
    395395      m2=p_Init(currRing);
    396396x2:
    397       for (i = pVariables; i; i--)
     397      for (i = (currRing->N); i; i--)
    398398      {
    399399        c = p_GetExpDiff(p1, p2,i, currRing);
     
    447447    m1=p_Init(currRing);
    448448x1:
    449     for (i = pVariables; i; i--)
     449    for (i = (currRing->N); i; i--)
    450450    {
    451451      c = p_GetExpDiff(p2, p1,i,currRing);
     
    485485  loop
    486486  {
    487     for (i = pVariables; i; i--)
     487    for (i = (currRing->N); i; i--)
    488488    {
    489489      c = p_GetExpDiff(p1, p2,i,currRing);
Note: See TracChangeset for help on using the changeset viewer.