Changeset 995a6a in git


Ignore:
Timestamp:
Jan 15, 2010, 4:00:24 PM (13 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
b07ba779b2e1e2117d4ddb200e38719a3c566c87
Parents:
d04ef3dab2a25a86536dd4d029684fd1bdd519d2
Message:
clean up structs.h, part ...

git-svn-id: file:///usr/local/Singular/svn/trunk@12436 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • Singular/LIB/algebra.lib

    rd04ef3d r995a6a  
    829829   // ------------------------ change of ordering ---------------------------
    830830   //Now change the order to (dp(n-d),lp) creating a new basering @S
    831     string s ="dp("+string(n-d)+"),lp";
     831   string s ="dp("+string(n-d)+"),lp";
    832832   def @S=changeord(s);
    833833   setring @S;
  • Singular/iparith.cc

    rd04ef3d r995a6a  
    100100
    101101typedef sValCmdTab jjValCmdTab[];
     102
     103struct _scmdnames
     104{
     105  char *name;
     106  short alias;
     107  short tokval;
     108  short toktype;
     109};
     110typedef struct _scmdnames cmdnames;
     111
    102112
    103113/* ifdef GENTABLE: definitions are in ipshell.h */
  • Singular/ipid.h

    rd04ef3d r995a6a  
    1111#include "structs.h"
    1212#include "subexpr.h"
     13
     14extern idhdl currPackHdl;
     15extern idhdl basePackHdl;
     16extern package currPack;
     17extern package basePack;
     18#define IDROOT (currPack->idroot)
    1319
    1420struct sip_command
  • Singular/ipshell.h

    rd04ef3d r995a6a  
    1010#include <stdio.h>
    1111#include "structs.h"
     12#include "ideals.h"
    1213
    1314
     
    2122extern ring   *iiLocalRing;
    2223#endif
    23 struct _scmdnames
    24 {
    25   char *name;
    26   short alias;
    27   short tokval;
    28   short toktype;
    29 };
    30 typedef struct _scmdnames cmdnames;
    31 
    3224//extern cmdnames cmds[];
    3325extern const char *lastreserved;
    34 extern const char *singular_date;
     26extern const char *singular_date; /* tesths.cc, set by final compile */
    3527
    3628extern BOOLEAN yyInRingConstruction; /* 1: during ring construction */
  • Singular/lists.h

    rd04ef3d r995a6a  
    88* ABSTRACT: handling of the list type
    99*/
     10#include "omalloc.h"
    1011#include "structs.h"
    11 #include "omalloc.h"
     12#include "ideals.h"
    1213#include "subexpr.h"
    1314#include "tok.h"
  • Singular/mpsr_Get.cc

    rd04ef3d r995a6a  
    732732  }
    733733
    734   map m = (map) omAlloc0Bin(sip_smap_bin);
     734  map m = (map) omAlloc0Bin(sip_sideal_bin);
    735735  m->preimage = omStrDup(name);
    736736  m->m = id->m;
Note: See TracChangeset for help on using the changeset viewer.