Changeset 995a6a in git
- Timestamp:
- Jan 15, 2010, 4:00:24 PM (13 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- b07ba779b2e1e2117d4ddb200e38719a3c566c87
- Parents:
- d04ef3dab2a25a86536dd4d029684fd1bdd519d2
- Location:
- Singular
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/LIB/algebra.lib
rd04ef3d r995a6a 829 829 // ------------------------ change of ordering --------------------------- 830 830 //Now change the order to (dp(n-d),lp) creating a new basering @S 831 831 string s ="dp("+string(n-d)+"),lp"; 832 832 def @S=changeord(s); 833 833 setring @S; -
Singular/iparith.cc
rd04ef3d r995a6a 100 100 101 101 typedef sValCmdTab jjValCmdTab[]; 102 103 struct _scmdnames 104 { 105 char *name; 106 short alias; 107 short tokval; 108 short toktype; 109 }; 110 typedef struct _scmdnames cmdnames; 111 102 112 103 113 /* ifdef GENTABLE: definitions are in ipshell.h */ -
Singular/ipid.h
rd04ef3d r995a6a 11 11 #include "structs.h" 12 12 #include "subexpr.h" 13 14 extern idhdl currPackHdl; 15 extern idhdl basePackHdl; 16 extern package currPack; 17 extern package basePack; 18 #define IDROOT (currPack->idroot) 13 19 14 20 struct sip_command -
Singular/ipshell.h
rd04ef3d r995a6a 10 10 #include <stdio.h> 11 11 #include "structs.h" 12 #include "ideals.h" 12 13 13 14 … … 21 22 extern ring *iiLocalRing; 22 23 #endif 23 struct _scmdnames24 {25 char *name;26 short alias;27 short tokval;28 short toktype;29 };30 typedef struct _scmdnames cmdnames;31 32 24 //extern cmdnames cmds[]; 33 25 extern const char *lastreserved; 34 extern const char *singular_date; 26 extern const char *singular_date; /* tesths.cc, set by final compile */ 35 27 36 28 extern BOOLEAN yyInRingConstruction; /* 1: during ring construction */ -
Singular/lists.h
rd04ef3d r995a6a 8 8 * ABSTRACT: handling of the list type 9 9 */ 10 #include "omalloc.h" 10 11 #include "structs.h" 11 #include " omalloc.h"12 #include "ideals.h" 12 13 #include "subexpr.h" 13 14 #include "tok.h" -
Singular/mpsr_Get.cc
rd04ef3d r995a6a 732 732 } 733 733 734 map m = (map) omAlloc0Bin(sip_s map_bin);734 map m = (map) omAlloc0Bin(sip_sideal_bin); 735 735 m->preimage = omStrDup(name); 736 736 m->m = id->m;
Note: See TracChangeset
for help on using the changeset viewer.