Changeset 98adcd in git
- Timestamp:
- Apr 11, 2012, 3:04:38 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- ea4f38900333c304ce2655ba13b1ab15003f27bdfcbfae5d69b3277a93d042a85b03a5ec3b8cf79c
- Parents:
- 4ec288be9af6f58af102d533957618aaf274e928
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-04-11 15:04:38+02:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-04-11 15:32:52+02:00
- Location:
- Singular
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r4ec288 r98adcd 683 683 } 684 684 return jjPLUSMINUS_Gen(res,u,v); 685 return FALSE;686 685 } 687 686 static BOOLEAN jjPLUS_MA(leftv res, leftv u, leftv v) -
Singular/ipconv.cc
r4ec288 r98adcd 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id$ */5 4 /* 6 5 * ABSTRACT: automatic type conversions … … 167 166 // operations... 168 167 number n = n_Init_bigint((number)data, coeffs_BIGINT, currRing->cf); 169 n_Delete((number *)&data, coeffs_BIGINT); 168 n_Delete((number *)&data, coeffs_BIGINT); 170 169 return (void*)n; 171 170 } … … 281 280 else if (input->name!=NULL) 282 281 { 283 output->name=input->name; 284 input->name=NULL; 282 if (input->rtyp==ALIAS_CMD) 283 output->name=omStrDup(input->name); 284 else 285 { 286 output->name=input->name; 287 input->name=NULL; 288 } 285 289 } 286 290 else if ((input->rtyp==POLY_CMD) && (input->name==NULL)) -
Singular/subexpr.cc
r4ec288 r98adcd 624 624 void * sleftv::CopyD(int t) 625 625 { 626 if ((rtyp!=IDHDL)&&( e==NULL))626 if ((rtyp!=IDHDL)&&(rtyp!=ALIAS_CMD)&&(e==NULL)) 627 627 { 628 628 if (iiCheckRing(t)) return NULL;
Note: See TracChangeset
for help on using the changeset viewer.