Changeset 59b7cd in git for kernel


Ignore:
Timestamp:
Jul 24, 2018, 3:55:16 PM (6 years ago)
Author:
Karim Abou Zeid <karim23697@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '38077648e7239f98078663eb941c3c979511150a')
Children:
f7851f7b2b79581f8563f53d8ff3ea7f7e50ad11
Parents:
cee69a8e6052ca2f198abe66c68a094273a679f0
Message:
Apply changes from Hans
Location:
kernel/GBEngine
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • kernel/GBEngine/kstd1.cc

    rcee69a r59b7cd  
    25952595  if (h==testHomog)
    25962596  {
    2597     if (delete_w)
    2598     {
    2599       temp_w=new intvec((strat->ak)+1);
    2600       w = &temp_w;
    2601     }
    26022597    if (strat->ak == 0)
    26032598    {
  • kernel/GBEngine/kutil.cc

    rcee69a r59b7cd  
    771771    return dReportError("%c[%d].poly is NULL", TN, i);
    772772
     773  if (T->p!=NULL)
     774  {
     775    nTest(pGetCoeff(T->p));
     776    if ((T->t_p==NULL)&&(pNext(T->p)!=NULL)) p_Test(pNext(T->p),currRing);
     777  }
     778  if (T->t_p!=NULL)
     779  {
     780    nTest(pGetCoeff(T->t_p));
     781    if (pNext(T->t_p)!=NULL) p_Test(pNext(T->t_p),strat_tailRing);
     782  }
     783  if ((T->p!=NULL)&&(T->t_p!=NULL)) assume(pGetCoeff(T->p)==pGetCoeff(T->t_p));
     784
    773785  if (T->tailRing != currRing)
    774786  {
     
    869881                BOOLEAN testp, int lpos, TSet T, int tlength)
    870882{
     883  if (L->p!=NULL)
     884  {
     885    nTest(pGetCoeff(L->p));
     886    if ((L->t_p==NULL)&&(pNext(L->p)!=NULL)) p_Test(pNext(L->p),currRing);
     887  }
     888  if (L->t_p!=NULL)
     889  {
     890    nTest(pGetCoeff(L->t_p));
     891    if (pNext(L->t_p)!=NULL) p_Test(pNext(L->t_p),strat_tailRing);
     892  }
     893  if ((L->p!=NULL)&&(L->t_p!=NULL)) assume(pGetCoeff(L->p)==pGetCoeff(L->t_p));
    871894  if (testp)
    872895  {
Note: See TracChangeset for help on using the changeset viewer.