Changeset e5ecb5 in git
- Timestamp:
- May 10, 2013, 7:40:53 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 6593beffd119ec3637eeb3be5c0350d70c646abbc9949879f3d301c9c1778b9de589982a6b5eff25
- Parents:
- 31e974b5248d027aefd2b1f1898b085e9f9e9cbb
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fevoices.cc
r31e974 re5ecb5 576 576 { 577 577 // handle prot: 578 if (feProt& PROT_I)578 if (feProt&SI_PROT_I) 579 579 { 580 580 fputs(s,feProtFile); -
Singular/iparith.cc
r31e974 re5ecb5 2705 2705 while(*opt!='\0') 2706 2706 { 2707 if (*opt=='i') mode |= PROT_I;2708 else if (*opt=='o') mode |= PROT_O;2707 if (*opt=='i') mode |= SI_PROT_I; 2708 else if (*opt=='o') mode |= SI_PROT_O; 2709 2709 opt++; 2710 2710 } … … 2728 2728 while(*opt!='\0') 2729 2729 { 2730 if (*opt=='i') mode |= PROT_I;2731 else if (*opt=='o') mode |= PROT_O;2730 if (*opt=='i') mode |= SI_PROT_I; 2731 else if (*opt=='o') mode |= SI_PROT_O; 2732 2732 opt++; 2733 2733 } -
kernel/kstd1.cc
r31e974 re5ecb5 1226 1226 mora_count++; 1227 1227 mora_loop_count = 0; 1228 #endif1229 #ifdef KDEBUG1230 om_Opts.MinTrack = 5;1231 1228 #endif 1232 1229 int olddeg = 0; -
kernel/kstd2.cc
r31e974 re5ecb5 1159 1159 int loop_count = 0; 1160 1160 #endif /* KDEBUG */ 1161 om_Opts.MinTrack = 5;1162 1161 int red_result = 1; 1163 1162 int olddeg,reduc; … … 1510 1509 int loop_count = 0; 1511 1510 #endif /* KDEBUG */ 1512 om_Opts.MinTrack = 5;1513 1511 int srmax,lrmax, red_result = 1; 1514 1512 int olddeg,reduc; … … 2497 2495 int loop_count = 0; 2498 2496 #endif 2499 om_Opts.MinTrack = 5;2500 2497 int red_result = 1; 2501 2498 int olddeg,reduc; -
kernel/sca.cc
r31e974 re5ecb5 156 156 #endif 157 157 158 #ifdef KDEBUG159 om_Opts.MinTrack = 5;160 #endif161 162 158 int olddeg, reduc; 163 159 int red_result = 1; … … 435 431 436 432 // strat->homog = strat->homog && strat->z2homog; // ? 437 438 439 440 #ifdef KDEBUG441 om_Opts.MinTrack = 5;442 #endif443 433 444 434 int red_result = 1; … … 935 925 #endif 936 926 937 #ifdef KDEBUG938 om_Opts.MinTrack = 5;939 #endif940 941 942 927 strat->update = TRUE; 943 928 //- setting global variables ------------------- - -
libpolys/reporter/reporter.cc
r31e974 re5ecb5 220 220 fwrite("\n",1,1,stdout); 221 221 fflush(stdout); 222 if (feProt& PROT_O)222 if (feProt&SI_PROT_O) 223 223 { 224 224 fwrite(warn_str,1,6,feProtFile); … … 302 302 fwrite(s,1,strlen(s),stdout); 303 303 fflush(stdout); 304 if (feProt& PROT_O)304 if (feProt&SI_PROT_O) 305 305 { 306 306 fwrite(s,1,strlen(s),feProtFile); -
libpolys/reporter/reporter.h
r31e974 re5ecb5 31 31 #define TRACE_TMP_BREAKPOINT 64 32 32 33 #define PROT_NONE 0 34 #define PROT_I 1 35 #define PROT_O 2 36 #define PROT_IO 3 33 #define SI_PROT_I 1 34 #define SI_PROT_O 2 35 #define SI_PROT_IO 3 37 36 38 37 /* the C-part: */
Note: See TracChangeset
for help on using the changeset viewer.