Changeset 43fb497 in git
- Timestamp:
- Mar 8, 2017, 1:57:33 PM (7 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 61c85ae94f50d7bc15aa6a2d330879d7cea6018a
- Parents:
- 19ac4b85e6a4f60c9947c67d092a0dce59187d24
- Location:
- Singular
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r19ac4b r43fb497 7968 7968 omFreeBin((ADDRESS)an, sleftv_bin); 7969 7969 omFreeBin((ADDRESS)bn, sleftv_bin); 7970 a->CleanUp(); 7971 b->CleanUp(); 7970 7972 return FALSE; 7971 7973 } -
Singular/ipassign.cc
r19ac4b r43fb497 1989 1989 /* advance the expressionlist to get the next element after the ring */ 1990 1990 hh = r->next; 1991 //r=hh;1992 1991 } 1993 1992 else -
Singular/iplib.cc
r19ac4b r43fb497 369 369 * return FALSE on success, TRUE if an error occurs 370 370 */ 371 BOOLEAN iiPStart(idhdl pn, sleftv *v)371 BOOLEAN iiPStart(idhdl pn, leftv v) 372 372 { 373 373 procinfov pi=NULL; … … 396 396 else return TRUE; 397 397 /* generate argument list ======================================*/ 398 //iiCurrArgs should be NULL here, as the assignment for the parameters 399 // of the prevouis call are already done befor calling another routine 398 400 if (v!=NULL) 399 401 { … … 499 501 } 500 502 } 501 BOOLEAN iiMake_proc(idhdl pn, package pack, sleftv*sl)503 BOOLEAN iiMake_proc(idhdl pn, package pack, leftv sl) 502 504 { 503 505 int err; -
Singular/ipshell.cc
r19ac4b r43fb497 2749 2749 R->cf->ref++; 2750 2750 } 2751 else 2752 if (L->m[0].Typ()==INT_CMD) 2751 else if (L->m[0].Typ()==INT_CMD) 2753 2752 { 2754 2753 int ch = (int)(long)L->m[0].Data(); … … 6061 6060 if (traceit &TRACE_SHOW_RINGS) Print("kill ring %lx\n",(long)r); 6062 6061 #endif 6063 if (r->qideal!=NULL)6064 {6065 id_Delete(&r->qideal, r);6066 r->qideal = NULL;6067 }6068 6062 int j; 6069 6063 for (j=0;j<myynest;j++) -
Singular/ipshell.h
r19ac4b r43fb497 45 45 int IsCmd(const char *n, int & tok); 46 46 47 BOOLEAN iiPStart(idhdl pn, sleftv *sl);47 BOOLEAN iiPStart(idhdl pn, leftv sl); 48 48 BOOLEAN iiEStart(char* example, procinfo *pi); 49 49 BOOLEAN iiAllStart(procinfov pi, char *p,feBufferTypes t, int l); … … 192 192 int iiDeclCommand(leftv sy, leftv name, int lev, int t, idhdl* root, 193 193 BOOLEAN isring = FALSE, BOOLEAN init_b=TRUE); 194 BOOLEAN iiMake_proc(idhdl pn, package pack, sleftv*sl);194 BOOLEAN iiMake_proc(idhdl pn, package pack, leftv sl); 195 195 // from misc.cc: 196 196 char * showOption(); -
Singular/subexpr.cc
r19ac4b r43fb497 1950 1950 } 1951 1951 1952 const char *iiSleftv2name(leftv v)1953 {1954 return(v->name);1955 }1956 1957 1952 void * sattr::CopyA() 1958 1953 { -
Singular/subexpr.h
r19ac4b r43fb497 75 75 76 76 extern BOOLEAN siq; 77 extern const char *iiSleftv2name(leftv v);78 77 79 78 class sleftv; … … 126 125 inline const char * Fullname() 127 126 { 128 if ((name!=NULL) && (e==NULL)) return( iiSleftv2name(this));127 if ((name!=NULL) && (e==NULL)) return(this->name); 129 128 else return sNoName_fe; 130 129 }
Note: See TracChangeset
for help on using the changeset viewer.