Changeset 59b7cd in git


Ignore:
Timestamp:
Jul 24, 2018, 3:55:16 PM (6 years ago)
Author:
Karim Abou Zeid <karim23697@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
f7851f7b2b79581f8563f53d8ff3ea7f7e50ad11
Parents:
cee69a8e6052ca2f198abe66c68a094273a679f0
Message:
Apply changes from Hans
Files:
3 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  {
  • libpolys/coeffs/longrat.cc

    rcee69a r59b7cd  
    16391639#endif
    16401640    }
     1641#ifdef LDEBUG
     1642    memset(*a,0,sizeof(**a));
     1643#endif
    16411644    FREE_RNUMBER(*a); // omFreeBin((void *) *a, rnumber_bin);
    16421645  }
Note: See TracChangeset for help on using the changeset viewer.