Changeset 883eacf in git
- Timestamp:
- Jun 1, 2010, 3:04:51 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'c18334b998a8adbf0013b8e1ce0824774019443e')
- Children:
- fe4bc7dbb3af0c3e854c0af71905892f47159468
- Parents:
- deb65390f406822451673902ed9d7f073d8deb1d
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
rdeb653 r883eacf 516 516 intvec *vv=new intvec(l); 517 517 int i; 518 for(i= 0;i<l;i++) { (*vv)[i]=d; }518 for(i=l-1;i>=0;i--) { (*vv)[i]=d; } 519 519 res->data=(char *)vv; 520 520 } -
Singular/ipshell.cc
rdeb653 r883eacf 975 975 976 976 hexist = hInit(S, Q, &hNexist); 977 if ((hNexist == 0) || (hisModule!=0)) 977 if (hNexist == 0) 978 { 979 intvec *iv=new intvec(pVariables); 980 for(i=0; i<pVariables; i++) (*iv)[i]=1; 981 res->Init(1); 982 res->m[0].rtyp=INTVEC_CMD; 983 res->m[0].data=(intvec*)iv; 984 return res; 985 } 986 else if (hisModule!=0) 978 987 { 979 988 res->Init(0);
Note: See TracChangeset
for help on using the changeset viewer.