Changeset 2971ea in git
- Timestamp:
- Oct 26, 2005, 12:42:04 PM (18 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- a9681886efc9ad4039f412e23673d166e83cb64f
- Parents:
- e0749e85fd2f728737794f71fc66b03f432e0a4d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/matpol.cc
re0749e8 r2971ea 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: matpol.cc,v 1. 2 2004-08-05 08:57:26Singular Exp $ */4 /* $Id: matpol.cc,v 1.3 2005-10-26 10:42:04 Singular Exp $ */ 5 5 6 6 /* … … 893 893 while (i>=0) 894 894 { 895 if (pSub(pCopy(a->m[i]),pCopy(b->m[i]))!=NULL) return FALSE; 895 poly tt=pSub(pCopy(a->m[i]),pCopy(b->m[i])); 896 if (tt!=NULL) 897 { 898 pDelete(&tt); 899 return FALSE; 900 } 896 901 i--; 897 902 }
Note: See TracChangeset
for help on using the changeset viewer.