Changeset 5efbf9 in git for kernel/GBEngine/kstd2.cc


Ignore:
Timestamp:
May 21, 2016, 1:18:14 AM (8 years ago)
Author:
Adi Popescu <adi_popescum@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'fc741b6502fd8a97288eaa3eba6e5220f3c3df87')
Children:
bdebb84b7e5e44a3f0d26a19f9d7ad9a6470e0d6
Parents:
d3963ac9165e16e5233bba73e3dfc49b9c87640e
git-author:
Adi Popescu <adi_popescum@yahoo.de>2016-05-21 01:18:14+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2016-05-23 16:43:26+02:00
Message:
add: posInL and T orderings for Ring case
added tests
Q: Is there a possibility to activate PreIntegerCheck from interpretor?
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd2.cc

    rd3963a r5efbf9  
    188188#if 1
    189189  int ende;
    190   if ((strat->ak>0) || currRing->pLexOrder) ende=strat->sl;
     190  if ((strat->ak>0) || currRing->pLexOrder || rField_is_Ring(currRing)) ende=strat->sl;
    191191  else ende=posInS(strat,*max_ind,p,0)+1;
    192192  if (ende>(*max_ind)) ende=(*max_ind);
     
    14391439
    14401440  initBuchMoraCrit(strat); /*set Gebauer, honey, sugarCrit*/
    1441   initBuchMoraPos(strat);
     1441    if(rField_is_Ring(currRing))
     1442    initBuchMoraPosRing(strat);
     1443  else
     1444    initBuchMoraPos(strat);
    14421445  initHilbCrit(F,Q,&hilb,strat);
    14431446  initBba(strat);
     
    18181821  initSbaCrit(strat); /*set Gebauer, honey, sugarCrit*/
    18191822  initSbaPos(strat);
    1820   //initBuchMoraPos(strat);
    18211823  initHilbCrit(F,Q,&hilb,strat);
    18221824  initSba(F,strat);
     
    28992901
    29002902  initBuchMoraCrit(strat); /*set Gebauer, honey, sugarCrit, NO CHANGES */
    2901   initBuchMoraPos(strat); /*NO CHANGES YET: perhaps later*/
     2903  if(rField_is_Ring(currRing))
     2904    initBuchMoraPosRing(strat);
     2905  else
     2906    initBuchMoraPos(strat); /*NO CHANGES YET: perhaps later*/
    29022907  initHilbCrit(F,Q,&hilb,strat); /*NO CHANGES*/
    29032908  initBbaShift(strat); /* DONE */
Note: See TracChangeset for help on using the changeset viewer.