Changeset e813875 in git


Ignore:
Timestamp:
Apr 7, 2010, 4:50:59 PM (14 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1bc9c40d54dd6fb1db62e53560cfc0c029e9fa06
Parents:
7249440a8b31fbbb1b4a4269cdfcf46991bd39bb
Message:
idrec -> idrec.h

git-svn-id: file:///usr/local/Singular/svn/trunk@12709 2c84dea3-7e68-4137-9b89-c4e89433aadc
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)
    13- structs.h: smpoly moved to sparsemat.cc,
    24             tHomog moved to ring.h,
    35             Exponent_t removed
     6             idtyp -> int
     7             Sy_refrence removed
     8             idrec -> idrec.h
    49- memory leaks fixed for nc rings (trac 214)
    510- documentation updates: primdec.lib, PLURAL
  • Singular/ipassign.cc

    r724944 re813875  
    1717#include "options.h"
    1818#include "ipid.h"
     19#include "idrec.h"
    1920#include "intvec.h"
    2021#include "omalloc.h"
  • Singular/ipid.cc

    r724944 re813875  
    116116//}
    117117
    118 idhdl idrec::set(const char * s, int lev, idtyp t, BOOLEAN init)
     118idhdl idrec::set(const char * s, int lev, int t, BOOLEAN init)
    119119{
    120120  //printf("define %s, %x, lev: %d, typ: %d\n", s,s,lev,t);
     
    215215
    216216//#define KAI
    217 idhdl enterid(const char * s, int lev, idtyp t, idhdl* root, BOOLEAN init)
     217idhdl enterid(const char * s, int lev, int t, idhdl* root, BOOLEAN init)
    218218{
    219219  idhdl h;
  • Singular/ipid.h

    r724944 re813875  
    1010#include <string.h>
    1111#include "structs.h"
     12#include "idrec.h"
    1213#include "subexpr.h"
    1314
     
    7980char *idhdl2id(idhdl pck, idhdl h);
    8081void  iiname2hdl(const char *name, idhdl *pck, idhdl *id);
    81 idhdl enterid(const char * a, int lev, idtyp t, idhdl* root, BOOLEAN init=TRUE);
     82idhdl enterid(const char * a, int lev, int t, idhdl* root, BOOLEAN init=TRUE);
    8283idhdl ggetid(const char *n);
    8384idhdl ggetid(const char *n, BOOLEAN local, idhdl *packhdl);
  • Singular/mpsr_Put.cc

    r724944 re813875  
    7070mpsr_Status_t mpsr_PutLeftv(MP_Link_pt link, leftv v, ring cring)
    7171{
    72   idtyp type = v->Typ();
     72  int type = v->Typ();
    7373
    7474  switch(type)
  • Singular/silink.cc

    r724944 re813875  
    606606{
    607607  const char *type_str = GetIdString(h);
    608   idtyp type_id = IDTYP(h);
     608  int type_id = IDTYP(h);
    609609
    610610  if ((type_id == PACKAGE_CMD) &&(strcmp(IDID(h), "Top") == 0))
     
    653653static const char* GetIdString(idhdl h)
    654654{
    655   idtyp type = IDTYP(h);
     655  int type = IDTYP(h);
    656656
    657657  switch(type)
     
    714714static int DumpRhs(FILE *fd, idhdl h)
    715715{
    716   idtyp type_id = IDTYP(h);
     716  int type_id = IDTYP(h);
    717717
    718718  if (type_id == LIST_CMD)
Note: See TracChangeset for help on using the changeset viewer.