Changeset 6e3cab in git
- Timestamp:
- Jul 26, 2006, 3:49:29 PM (17 years ago)
- Branches:
- (u'spielwiese', 'd1b01e9d51ade4b46b745d3bada5c5f3696be3a8')
- Children:
- 9f7370680fe1fcdd4b1f7d54b568d74bb239e6fe
- Parents:
- f3c6e5cf695bf90001021f22fdfc176f564b03fb
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rf3c6e5 r6e3cab 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: iparith.cc,v 1.40 6 2006-07-18 16:09:18Singular Exp $ */4 /* $Id: iparith.cc,v 1.407 2006-07-26 13:49:29 Singular Exp $ */ 5 5 6 6 /* … … 3954 3954 if (r!=NULL) 3955 3955 res->data = (char *)rDecompose((ring)v->Data()); 3956 return (r==NULL) ;3956 return (r==NULL)||(res->data==NULL); 3957 3957 } 3958 3958 static BOOLEAN jjROWS(leftv res, leftv v) -
Singular/ipshell.cc
rf3c6e5 r6e3cab 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipshell.cc,v 1.14 1 2006-07-21 12:36:26Singular Exp $ */4 /* $Id: ipshell.cc,v 1.142 2006-07-26 13:49:28 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: … … 1676 1676 else if (rIsExtension(r)) 1677 1677 { 1678 rDecomposeCF(&(L->m[0]),r->algring,r); 1678 if (r->algring!=NULL) 1679 rDecomposeCF(&(L->m[0]),r->algring,r); 1679 1680 if (L->m[0].rtyp==0) 1680 1681 { 1681 omFreeBin(slists_bin,(void *)L);1682 //omFreeBin(slists_bin,(void *)L); 1682 1683 return NULL; 1683 1684 }
Note: See TracChangeset
for help on using the changeset viewer.