Changeset 454dc14 in git
- Timestamp:
- Dec 1, 2014, 12:34:32 PM (9 years ago)
- Branches:
- (u'spielwiese', 'e7cc1ebecb61be8b9ca6c18016352af89940b21a')
- Children:
- 9bad87be37a4b25273b78126bcc64bd177edfeec
- Parents:
- 7956776b4aebffc4e8af1e2e8c453ae0c91831f5
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_defs.h
r7956776 r454dc14 26 26 27 27 /// set to 1 for computations over Q 28 const int SW_RATIONAL = 0;28 static const int SW_RATIONAL = 0; 29 29 /// set to 1 for symmetric representation over F_q 30 const int SW_SYMMETRIC_FF = 1;30 static const int SW_SYMMETRIC_FF = 1; 31 31 /// set to 1 to use EZGCD over Z 32 const int SW_USE_EZGCD = 2;32 static const int SW_USE_EZGCD = 2; 33 33 /// set to 1 to use EZGCD over F_q 34 const int SW_USE_EZGCD_P = 3;34 static const int SW_USE_EZGCD_P = 3; 35 35 /// set to 1 to sort factors in a factorization 36 const int SW_USE_NTL_SORT=4;36 static const int SW_USE_NTL_SORT=4; 37 37 /// set to 1 to use modular gcd over Z 38 const int SW_USE_CHINREM_GCD=5;38 static const int SW_USE_CHINREM_GCD=5; 39 39 /// set to 1 to use Encarnacion GCD over Q(a) 40 const int SW_USE_QGCD=6;40 static const int SW_USE_QGCD=6; 41 41 /// set to 1 to use modular GCD over F_q 42 const int SW_USE_FF_MOD_GCD=7;42 static const int SW_USE_FF_MOD_GCD=7; 43 43 44 44 /*ENDPUBLIC*/ -
kernel/mod2.h
r7956776 r454dc14 16 16 17 17 #define SINGULAR_MAJOR_VERSION 4 18 19 /*#define SINGULAR_4_1 1*/20 18 21 19 #ifdef SINGULAR_4_1 -
libpolys/misc/auxiliary.h.in
r7956776 r454dc14 78 78 * 2: given by SI_INTEGER_VARIANT */ 79 79 #define SI_BIGINT_VARIANT 1 80 81 /* preparation for versio 4.1.0: */ 82 // #define SINGULAR_4_1 80 83 81 84 #ifndef SIZEOF_LONG
Note: See TracChangeset
for help on using the changeset viewer.