Changeset e813875 in git
- Timestamp:
- Apr 7, 2010, 4:50:59 PM (13 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 1bc9c40d54dd6fb1db62e53560cfc0c029e9fa06
- Parents:
- 7249440a8b31fbbb1b4a4269cdfcf46991bd39bb
- Location:
- Singular
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ChangeLog
r724944 re813875 1 - bug in NF fixed (see Tst/Short/bug_reduce.tst (was somehow wrong in 310..311) 2 - cntrl-c hadling in interpreter fixed (was somehow lost in 310..311) 1 3 - structs.h: smpoly moved to sparsemat.cc, 2 4 tHomog moved to ring.h, 3 5 Exponent_t removed 6 idtyp -> int 7 Sy_refrence removed 8 idrec -> idrec.h 4 9 - memory leaks fixed for nc rings (trac 214) 5 10 - documentation updates: primdec.lib, PLURAL -
Singular/ipassign.cc
r724944 re813875 17 17 #include "options.h" 18 18 #include "ipid.h" 19 #include "idrec.h" 19 20 #include "intvec.h" 20 21 #include "omalloc.h" -
Singular/ipid.cc
r724944 re813875 116 116 //} 117 117 118 idhdl idrec::set(const char * s, int lev, i dtypt, BOOLEAN init)118 idhdl idrec::set(const char * s, int lev, int t, BOOLEAN init) 119 119 { 120 120 //printf("define %s, %x, lev: %d, typ: %d\n", s,s,lev,t); … … 215 215 216 216 //#define KAI 217 idhdl enterid(const char * s, int lev, i dtypt, idhdl* root, BOOLEAN init)217 idhdl enterid(const char * s, int lev, int t, idhdl* root, BOOLEAN init) 218 218 { 219 219 idhdl h; -
Singular/ipid.h
r724944 re813875 10 10 #include <string.h> 11 11 #include "structs.h" 12 #include "idrec.h" 12 13 #include "subexpr.h" 13 14 … … 79 80 char *idhdl2id(idhdl pck, idhdl h); 80 81 void iiname2hdl(const char *name, idhdl *pck, idhdl *id); 81 idhdl enterid(const char * a, int lev, i dtypt, idhdl* root, BOOLEAN init=TRUE);82 idhdl enterid(const char * a, int lev, int t, idhdl* root, BOOLEAN init=TRUE); 82 83 idhdl ggetid(const char *n); 83 84 idhdl ggetid(const char *n, BOOLEAN local, idhdl *packhdl); -
Singular/mpsr_Put.cc
r724944 re813875 70 70 mpsr_Status_t mpsr_PutLeftv(MP_Link_pt link, leftv v, ring cring) 71 71 { 72 i dtyptype = v->Typ();72 int type = v->Typ(); 73 73 74 74 switch(type) -
Singular/silink.cc
r724944 re813875 606 606 { 607 607 const char *type_str = GetIdString(h); 608 i dtyptype_id = IDTYP(h);608 int type_id = IDTYP(h); 609 609 610 610 if ((type_id == PACKAGE_CMD) &&(strcmp(IDID(h), "Top") == 0)) … … 653 653 static const char* GetIdString(idhdl h) 654 654 { 655 i dtyptype = IDTYP(h);655 int type = IDTYP(h); 656 656 657 657 switch(type) … … 714 714 static int DumpRhs(FILE *fd, idhdl h) 715 715 { 716 i dtyptype_id = IDTYP(h);716 int type_id = IDTYP(h); 717 717 718 718 if (type_id == LIST_CMD)
Note: See TracChangeset
for help on using the changeset viewer.