Changeset 59b7cd in git
- Timestamp:
- Jul 24, 2018, 3:55:16 PM (5 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- f7851f7b2b79581f8563f53d8ff3ea7f7e50ad11
- Parents:
- cee69a8e6052ca2f198abe66c68a094273a679f0
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/GBEngine/kstd1.cc
rcee69a r59b7cd 2595 2595 if (h==testHomog) 2596 2596 { 2597 if (delete_w)2598 {2599 temp_w=new intvec((strat->ak)+1);2600 w = &temp_w;2601 }2602 2597 if (strat->ak == 0) 2603 2598 { -
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 { -
libpolys/coeffs/longrat.cc
rcee69a r59b7cd 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.