Changeset 3d752a in git
- Timestamp:
- Jul 24, 2018, 3:51:18 PM (5 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 502cf86d0bb2a96715be6764774b64a69c1ca34c
- Parents:
- 79d81e55c8fa0bafcf778605ad3ed28e8b9a1321
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kutil.cc
r79d81e5 r3d752a 768 768 return dReportError("%c[%d].poly is NULL", TN, i); 769 769 770 if (T->p!=NULL) 771 { 772 nTest(pGetCoeff(T->p)); 773 if ((T->t_p==NULL)&&(pNext(T->p)!=NULL)) p_Test(pNext(T->p),currRing); 774 } 775 if (T->t_p!=NULL) 776 { 777 nTest(pGetCoeff(T->t_p)); 778 if (pNext(T->t_p)!=NULL) p_Test(pNext(T->t_p),strat_tailRing); 779 } 780 if ((T->p!=NULL)&&(T->t_p!=NULL)) assume(pGetCoeff(T->p)==pGetCoeff(T->t_p)); 781 770 782 if (T->tailRing != currRing) 771 783 { … … 860 872 BOOLEAN testp, int lpos, TSet T, int tlength) 861 873 { 874 if (L->p!=NULL) 875 { 876 nTest(pGetCoeff(L->p)); 877 if ((L->t_p==NULL)&&(pNext(L->p)!=NULL)) p_Test(pNext(L->p),currRing); 878 } 879 if (L->t_p!=NULL) 880 { 881 nTest(pGetCoeff(L->t_p)); 882 if (pNext(L->t_p)!=NULL) p_Test(pNext(L->t_p),strat_tailRing); 883 } 884 if ((L->p!=NULL)&&(L->t_p!=NULL)) assume(pGetCoeff(L->p)==pGetCoeff(L->t_p)); 885 862 886 if (testp) 863 887 { -
libpolys/coeffs/longrat.cc
r79d81e5 r3d752a 1639 1639 #endif 1640 1640 } 1641 #ifdef LDEBUG 1642 memset(*a,0,sizeof(**a)); 1643 #endif 1641 1644 FREE_RNUMBER(*a); // omFreeBin((void *) *a, rnumber_bin); 1642 1645 }
Note: See TracChangeset
for help on using the changeset viewer.