Changeset 59b7cd in git for kernel/GBEngine/kutil.cc
- Timestamp:
- Jul 24, 2018, 3:55:16 PM (5 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- f7851f7b2b79581f8563f53d8ff3ea7f7e50ad11
- Parents:
- cee69a8e6052ca2f198abe66c68a094273a679f0
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kutil.cc
rcee69a r59b7cd 771 771 return dReportError("%c[%d].poly is NULL", TN, i); 772 772 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 773 785 if (T->tailRing != currRing) 774 786 { … … 869 881 BOOLEAN testp, int lpos, TSet T, int tlength) 870 882 { 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)); 871 894 if (testp) 872 895 {
Note: See TracChangeset
for help on using the changeset viewer.