1 | /* emacs edit mode for this file is -*- C++ -*- */ |
---|
2 | |
---|
3 | #ifndef INCL_FACTORY_H |
---|
4 | #define INCL_FACTORY_H |
---|
5 | |
---|
6 | /* factory.template is a template to generate `factory.h' */ |
---|
7 | |
---|
8 | /** |
---|
9 | * |
---|
10 | * @file factory.h |
---|
11 | * |
---|
12 | * `factory.h' is the user interface to Factory. Created |
---|
13 | * automatically by `makeheader', it collects all important |
---|
14 | * declarations from all important Factory header files into one |
---|
15 | * overall header file leaving out all boring Factory internal |
---|
16 | * stuff. See `./bin/makeheader' for an explanation of the syntax |
---|
17 | * of this file. |
---|
18 | * |
---|
19 | * Note: In this file the order of "includes" matters (since this |
---|
20 | * are not real includes)! In general, files at the end depend |
---|
21 | * on files at the beginning. |
---|
22 | * |
---|
23 | **/ |
---|
24 | |
---|
25 | #include <factory/factoryconf.h> |
---|
26 | #include <stdint.h> |
---|
27 | #ifdef HAVE_OMALLOC |
---|
28 | #include <omalloc/omallocClass.h> |
---|
29 | #endif |
---|
30 | |
---|
31 | #ifndef NOSTREAMIO |
---|
32 | # ifdef HAVE_IOSTREAM |
---|
33 | # include <iostream> |
---|
34 | # define OSTREAM std::ostream |
---|
35 | # define ISTREAM std::istream |
---|
36 | # elif defined(HAVE_IOSTREAM_H) |
---|
37 | # include <iostream.h> |
---|
38 | # define OSTREAM ostream |
---|
39 | # define ISTREAM istream |
---|
40 | # endif |
---|
41 | #endif /* ! NOSTREAMIO */ |
---|
42 | |
---|
43 | #include <factory/cf_gmp.h> |
---|
44 | |
---|
45 | #include <factory/templates/ftmpl_array.h> |
---|
46 | #include <factory/templates/ftmpl_afactor.h> |
---|
47 | #include <factory/templates/ftmpl_factor.h> |
---|
48 | #include <factory/templates/ftmpl_list.h> |
---|
49 | #include <factory/templates/ftmpl_matrix.h> |
---|
50 | |
---|
51 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
52 | #include "cf_globals.h" |
---|
53 | |
---|
54 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
55 | #include "cf_primes.h" |
---|
56 | |
---|
57 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
58 | #include "cf_defs.h" |
---|
59 | |
---|
60 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
61 | #include "variable.h" |
---|
62 | |
---|
63 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
64 | #include "canonicalform.h" |
---|
65 | |
---|
66 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
67 | #include "cf_algorithm.h" |
---|
68 | |
---|
69 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
70 | #include "cf_eval.h" |
---|
71 | |
---|
72 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
73 | #include "cf_generator.h" |
---|
74 | |
---|
75 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
76 | #include "cf_iter.h" |
---|
77 | |
---|
78 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
79 | #include "cf_random.h" |
---|
80 | |
---|
81 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
82 | #include "fac_util.h" |
---|
83 | |
---|
84 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
85 | #include "cf_map.h" |
---|
86 | |
---|
87 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
88 | #include "cf_reval.h" |
---|
89 | |
---|
90 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
91 | #include "fac_sqrfree.h" |
---|
92 | |
---|
93 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
94 | #include "gfops.h" |
---|
95 | |
---|
96 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
97 | #include "cf_hnf.h" |
---|
98 | |
---|
99 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
100 | #include "singext.h" |
---|
101 | |
---|
102 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
103 | #include "cf_util.h" |
---|
104 | |
---|
105 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
106 | #include "facIrredTest.h" |
---|
107 | |
---|
108 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
109 | #include "facAbsFact.h" |
---|
110 | |
---|
111 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
112 | #include "cfModResultant.h" |
---|
113 | |
---|
114 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
115 | #include "facAlgFunc.h" |
---|
116 | |
---|
117 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
118 | #include "cfCharSetsUtil.h" |
---|
119 | |
---|
120 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
121 | #include "cfCharSets.h" |
---|
122 | |
---|
123 | /*MAKEHEADER PUBLIC ONLY*/ |
---|
124 | #include "cfUnivarGcd.h" |
---|
125 | |
---|
126 | |
---|
127 | #endif /* ! INCL_FACTORY_H */ |
---|