source: git/factory/cf_defs.h @ 12f992

spielwiese
Last change on this file since 12f992 was 12f992, checked in by Martin Lee <martinlee84@…>, 10 years ago
chg: deleted SW_USE_NTL_GCD_*
  • Property mode set to 100644
File size: 730 bytes
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2
3#ifndef INCL_CF_DEFS_H
4#define INCL_CF_DEFS_H
5
6// #include "config.h"
7
8/*BEGINPUBLIC*/
9
10#define LEVELBASE -1000000
11#define LEVELTRANS -500000
12#define LEVELQUOT 1000000
13#define LEVELEXPR 1000001
14
15#define UndefinedDomain 32000
16#define GaloisFieldDomain 4
17#define FiniteFieldDomain 3
18#define RationalDomain 2
19#define IntegerDomain 1
20
21//{{{ constants
22//{{{ docu
23//
24// - factory switches.
25//
26//}}}
27const int SW_RATIONAL = 0;
28const int SW_SYMMETRIC_FF = 1;
29const int SW_USE_EZGCD = 2;
30const int SW_USE_EZGCD_P = 3;
31const int SW_USE_NTL_SORT=4;
32const int SW_USE_CHINREM_GCD=5;
33const int SW_USE_QGCD=6;
34const int SW_USE_FF_MOD_GCD=7;
35//}}}
36
37/*ENDPUBLIC*/
38
39#endif /* ! INCL_CF_DEFS_H */
Note: See TracBrowser for help on using the repository browser.