Changeset 30c2d97 in git
- Timestamp:
- Jan 28, 2010, 11:39:49 AM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- d544b11776d6691410329c3725149cb11e700ab3
- Parents:
- af92df51b8d5feaf30e639aaa8980a541c934eb8
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ipassign.cc
raf92df r30c2d97 79 79 Kstd1_deg=(int)((long)(a->Data())); 80 80 if (Kstd1_deg!=0) 81 test |=Sy_bit( 24);81 test |=Sy_bit(OPT_DEGBOUND); 82 82 else 83 test &=(~Sy_bit( 24));83 test &=(~Sy_bit(OPT_DEGBOUND)); 84 84 return FALSE; 85 85 } … … 88 88 Kstd1_mu=(int)((long)(a->Data())); 89 89 if (Kstd1_mu!=0) 90 test |=Sy_bit( 23);90 test |=Sy_bit(OPT_MULTBOUND); 91 91 else 92 test &=(~Sy_bit( 23));92 test &=(~Sy_bit(OPT_MULTBOUND)); 93 93 return FALSE; 94 94 } -
Singular/misc.cc
raf92df r30c2d97 241 241 {"geometricSB",Sy_bit(V_UPTORADICAL),~Sy_bit(V_UPTORADICAL)}, 242 242 {"findMonomials",Sy_bit(V_FINDMONOM),~Sy_bit(V_FINDMONOM)}, 243 {"coefStrat",Sy_bit(V_COEFSTRAT),~Sy_bit(V_COEFSTRAT)}, 243 {"coefStrat",Sy_bit(V_COEFSTRAT), ~Sy_bit(V_COEFSTRAT)}, 244 {"qringNF", Sy_bit(V_QRING), ~Sy_bit(V_QRING)}, 244 245 /*special for "none" and also end marker for showOption:*/ 245 246 {"ne", 0, 0 } -
kernel/longalg.cc
raf92df r30c2d97 25 25 #endif 26 26 #include "longalg.h" 27 28 struct snaIdeal 29 { 30 int anz; 31 napoly *liste; 32 }; 33 typedef struct snaIdeal * naIdeal; 27 34 28 35 naIdeal naI=NULL; -
kernel/options.h
raf92df r30c2d97 8 8 * ABSTRACT: macros for global options 9 9 */ 10 11 #include "structs.h" /*for BITSET */ 12 /*the general set of std-options : test */ 13 /*the general set of verbose-options : verbose */ 14 #ifdef __cplusplus 15 extern "C" BITSET test; 16 extern "C" BITSET verbose; 17 #else 18 extern BITSET test; 19 extern BITSET verbose; 20 #endif 10 21 11 22 /* … … 111 122 #define TEST_V_FINDMONOM BVERBOSE(V_FINDMONOM) 112 123 124 113 125 #endif -
kernel/structs.h
raf92df r30c2d97 196 196 typedef struct p_Procs_s p_Procs_s; 197 197 198 // for longalg.cc199 struct snaIdeal200 {201 int anz;202 napoly *liste;203 };204 typedef struct snaIdeal * naIdeal;205 206 207 198 // for sparsemat.cc 208 199 typedef struct smprec sm_prec; … … 682 673 #endif 683 674 684 /*the general set of std-options --> kutil.cc */685 /*the general set of verbose-options --> febase.cc */686 #ifdef __cplusplus687 extern "C" BITSET test;688 extern "C" BITSET verbose;689 #else690 extern BITSET test;691 extern BITSET verbose;692 #endif693 694 675 #define loop for(;;) 695 676
Note: See TracChangeset
for help on using the changeset viewer.