Changeset 210bd9 in git
- Timestamp:
- Jan 27, 2010, 7:40:47 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- af92df51b8d5feaf30e639aaa8980a541c934eb8
- Parents:
- 690e21e881c763e9c23a2f83759a44488fbf2ea0
- Location:
- Singular
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/attrib.cc
r690e21e r210bd9 16 16 #include "mod2.h" 17 17 #include "omalloc.h" 18 #include "options.h" 18 19 #include "tok.h" 19 20 #include "ipid.h" -
Singular/extra.cc
r690e21e r210bd9 35 35 36 36 #include "tok.h" 37 #include "options.h" 37 38 #include "ipid.h" 38 39 #include "polys.h" -
Singular/feOpt.cc
r690e21e r210bd9 10 10 #include <stdlib.h> 11 11 #include "mod2.h" 12 #include "options.h" 12 13 #include "feOpt.h" 13 14 -
Singular/fglm.cc
r690e21e r210bd9 21 21 #ifdef HAVE_FGLM 22 22 #include "tok.h" 23 #include " structs.h"23 #include "options.h" 24 24 #include "polys.h" 25 25 #include "ideals.h" -
Singular/grammar.cc
r690e21e r210bd9 336 336 #include "omalloc.h" 337 337 #include "tok.h" 338 #include "options.h" 338 339 #include "stype.h" 339 340 #include "ipid.h" -
Singular/grammar.y
r690e21e r210bd9 18 18 #include "omalloc.h" 19 19 #include "tok.h" 20 #include "options.h" 20 21 #include "stype.h" 21 22 #include "ipid.h" -
Singular/interpolation.cc
r690e21e r210bd9 5 5 6 6 #include "mod2.h" 7 #include " structs.h"7 #include "options.h" 8 8 #include "febase.h" 9 9 #include "ideals.h" -
Singular/iparith.cc
r690e21e r210bd9 17 17 #include "mod2.h" 18 18 #include "tok.h" 19 #include "options.h" 19 20 #include "ipid.h" 20 21 #include "intvec.h" -
Singular/ipassign.cc
r690e21e r210bd9 15 15 #include "mod2.h" 16 16 #include "tok.h" 17 #include "options.h" 17 18 #include "ipid.h" 18 19 #include "intvec.h" -
Singular/ipid.cc
r690e21e r210bd9 14 14 #include "omalloc.h" 15 15 #include "tok.h" 16 #include "options.h" 16 17 #include "ipshell.h" 17 18 #include "intvec.h" -
Singular/iplib.cc
r690e21e r210bd9 16 16 #include "static.h" 17 17 #include "tok.h" 18 #include "options.h" 18 19 #include "ipid.h" 19 20 #include "omalloc.h" -
Singular/ipshell.cc
r690e21e r210bd9 15 15 #include "mod2.h" 16 16 #include "tok.h" 17 #include "options.h" 17 18 #include "ipid.h" 18 19 #include "intvec.h" -
Singular/libparse.cc
r690e21e r210bd9 1069 1069 #include "ipid.h" 1070 1070 #include "tok.h" 1071 #include "options.h" 1071 1072 #include "febase.h" 1072 1073 #include "omalloc.h" -
Singular/libparse.l
r690e21e r210bd9 20 20 #include "ipid.h" 21 21 #include "tok.h" 22 #include "options.h" 22 23 #include "febase.h" 23 24 #include "omalloc.h" -
Singular/misc.cc
r690e21e r210bd9 18 18 #include "structs.h" 19 19 #include "tok.h" 20 #include "options.h" 20 21 #include "febase.h" 21 22 #include "cntrlc.h" … … 366 367 #ifdef YYDEBUG 367 368 #if YYDEBUG 369 /*debugging the bison grammar --> grammar.cc*/ 370 extern int yydebug; 368 371 if (BVERBOSE(V_YACC)) yydebug=1; 369 372 else yydebug=0; -
Singular/sdb.cc
r690e21e r210bd9 11 11 #include "mod2.h" 12 12 #include "tok.h" 13 #include "options.h" 13 14 #include "omalloc.h" 14 15 #include "febase.h" -
Singular/silink.cc
r690e21e r210bd9 16 16 #include "mod2.h" 17 17 #include "tok.h" 18 #include "options.h" 18 19 #include <omalloc.h> 19 20 #include "febase.h" -
Singular/subexpr.cc
r690e21e r210bd9 16 16 #include "intvec.h" 17 17 #include "tok.h" 18 #include "options.h" 18 19 #include "ipid.h" 19 20 #include "intvec.h" -
Singular/tesths.cc
r690e21e r210bd9 17 17 #include "mod2.h" 18 18 #include "tok.h" 19 #include "options.h" 19 20 #include "ipshell.h" 20 21 #include "febase.h" -
Singular/tok.h
r690e21e r210bd9 161 161 #define UNKNOWN 0 162 162 163 /*164 ** Set operations (small sets only)165 */166 167 #define Sy_bit(x) ((unsigned)1<<(x))168 #define Sy_inset(x,s) ((Sy_bit(x)&(s))?TRUE:FALSE)169 #define BTEST1(a) Sy_inset((a), test)170 #define BVERBOSE(a) Sy_inset((a), verbose)171 172 /*173 ** defines for BITSETs174 */175 176 #define V_SHOW_MEM 2177 #define V_YACC 3178 #define V_REDEFINE 4179 #define V_READING 5180 #define V_LOAD_LIB 6181 #define V_DEBUG_LIB 7182 #define V_LOAD_PROC 8183 #define V_DEF_RES 9184 #define V_DEBUG_MEM 10185 #define V_SHOW_USE 11186 #define V_IMAP 12187 #define V_PROMPT 13188 #define V_NSB 14189 #define V_CONTENTSB 15190 #define V_CANCELUNIT 16191 #define V_DEG_STOP 31192 193 194 #define OPT_PROT 0195 #define OPT_REDSB 1196 #define OPT_NOT_BUCKETS 2197 #define OPT_NOT_SUGAR 3198 #define OPT_INTERRUPT 4199 #define OPT_SUGARCRIT 5200 #define OPT_DEBUG 6201 #define OPT_REDTHROUGH 7202 #define OPT_RETURN_SB 9203 #define OPT_FASTHC 10204 #define OPT_OLDSTD 20205 #define OPT_KEEPVARS 21206 #define OPT_STAIRCASEBOUND 22207 #define OPT_MULTBOUND 23208 #define OPT_DEGBOUND 24209 #define OPT_REDTAIL 25210 #define OPT_INTSTRATEGY 26211 #define OPT_INFREDTAIL 28212 #define OPT_SB_1 29213 #define OPT_NOTREGULARITY 30214 #define OPT_WEIGHTM 31215 216 /* define ring dependent options */217 #define TEST_RINGDEP_OPTS \218 (Sy_bit(OPT_INTSTRATEGY) | Sy_bit(OPT_REDTHROUGH) | Sy_bit(OPT_REDTAIL))219 220 #define TEST_OPT_PROT BTEST1(OPT_PROT)221 #define TEST_OPT_REDSB BTEST1(OPT_REDSB)222 #define TEST_OPT_NOT_BUCKETS BTEST1(OPT_NOT_BUCKETS)223 #define TEST_OPT_NOT_SUGAR BTEST1(OPT_NOT_SUGAR)224 #define TEST_OPT_SUGARCRIT BTEST1(OPT_SUGARCRIT)225 #define TEST_OPT_DEBUG BTEST1(OPT_DEBUG)226 #define TEST_OPT_FASTHC BTEST1(OPT_FASTHC)227 #define TEST_OPT_INTSTRATEGY BTEST1(OPT_INTSTRATEGY)228 #define TEST_OPT_RETURN_SB BTEST1(OPT_RETURN_SB)229 #define TEST_OPT_KEEPVARS BTEST1(OPT_KEEPVARS)230 #define TEST_OPT_DEGBOUND BTEST1(OPT_DEGBOUND)231 #define TEST_OPT_MULTBOUND BTEST1(OPT_MULTBOUND)232 #define TEST_OPT_STAIRCASEBOUND BTEST1(OPT_STAIRCASEBOUND)233 #define TEST_OPT_REDTAIL BTEST1(OPT_REDTAIL)234 #define TEST_OPT_INFREDTAIL BTEST1(OPT_INFREDTAIL)235 #define TEST_OPT_SB_1 BTEST1(OPT_SB_1)236 #define TEST_OPT_NOTREGULARITY BTEST1(OPT_NOTREGULARITY)237 #define TEST_OPT_WEIGHTM BTEST1(OPT_WEIGHTM)238 #define TEST_OPT_REDTHROUGH BTEST1(OPT_REDTHROUGH)239 #define TEST_OPT_OLDSTD BTEST1(OPT_OLDSTD)240 #define TEST_OPT_CONTENTSB BVERBOSE(V_CONTENTSB)241 #define TEST_OPT_CANCELUNIT BVERBOSE(V_CANCELUNIT)242 243 #define TEST_VERB_NSB BVERBOSE(V_NSB)244 #define TEST_V_DEG_STOP BVERBOSE(V_DEG_STOP)245 246 163 #endif -
Singular/walk.cc
r690e21e r210bd9 50 50 #include "intvec.h" 51 51 #include "cntrlc.h" 52 #include "math.h" 53 #include "structs.h" 52 #include "options.h" 54 53 #include "omalloc.h" 55 54 #include "febase.h" -
Singular/walk_ip.cc
r690e21e r210bd9 15 15 #include "mod2.h" 16 16 #include "tok.h" 17 #include "options.h" 17 18 #include "ipid.h" 18 19 #include "intvec.h"
Note: See TracChangeset
for help on using the changeset viewer.