source: git/factory/factory.template @ ab547e2

spielwiese
Last change on this file since ab547e2 was 4a5e77, checked in by Martin Lee <martinlee84@…>, 13 years ago
added probabilistic irreducibility test, available via system ("probIrredTest",poly,"error") git-svn-id: file:///usr/local/Singular/svn/trunk@14042 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 2.4 KB
Line 
1/* emacs edit mode for this file is -*- C++ -*- */
2/* $Id$ */
3
4#ifndef INCL_FACTORY_H
5#define INCL_FACTORY_H
6
7//{{{ docu
8//
9// factory.template - template to generate `factory.h'.
10//
11// `factory.h' is the user interface to Factory.  Created
12// automatically by `makeheader', it collects all important
13// declarations from all important Factory header files into one
14// overall header file leaving out all boring Factory internal
15// stuff.  See `./bin/makeheader' for an explanation of the syntax
16// of this file.
17//
18// Note: In this file the order of "includes" matters (since this
19// are not real includes)!  In general, files at the end depend
20// on files at the beginning.
21//
22//}}}
23
24#include <factory/factoryconf.h>
25
26#ifndef NOSTREAMIO
27#  ifdef HAVE_IOSTREAM
28#    include <iostream>
29#    define OSTREAM std::ostream
30#    define ISTREAM std::istream
31#  elif defined(HAVE_IOSTREAM_H)
32#    include <iostream.h>
33#    define OSTREAM ostream
34#    define ISTREAM istream
35#  endif
36#endif /* ! NOSTREAMIO */
37
38#ifdef SINGULAR
39#  include <factory/cf_gmp.h>
40#else
41#  include <gmp.h>
42#endif /* SINGULAR */
43
44#include <factory/templates/ftmpl_array.h>
45#include <factory/templates/ftmpl_factor.h>
46#include <factory/templates/ftmpl_list.h>
47#include <factory/templates/ftmpl_matrix.h>
48
49/*MAKEHEADER PUBLIC ONLY*/
50#include "cf_globals.h"
51
52/*MAKEHEADER PUBLIC ONLY*/
53#include "cf_primes.h"
54
55/*MAKEHEADER PUBLIC ONLY*/
56#include "cf_defs.h"
57
58/*MAKEHEADER PUBLIC ONLY*/
59#include "variable.h"
60
61/*MAKEHEADER PUBLIC ONLY*/
62#include "canonicalform.h"
63
64/*MAKEHEADER PUBLIC ONLY*/
65#include "cf_binom.h"
66
67/*MAKEHEADER PUBLIC ONLY*/
68#include "cf_algorithm.h"
69
70/*MAKEHEADER PUBLIC ONLY*/
71#include "cf_eval.h"
72
73/*MAKEHEADER PUBLIC ONLY*/
74#include "cf_generator.h"
75
76/*MAKEHEADER PUBLIC ONLY*/
77#include "cf_iter.h"
78
79/*MAKEHEADER PUBLIC ONLY*/
80#include "cf_random.h"
81
82/*MAKEHEADER PUBLIC ONLY*/
83#include "cf_irred.h"
84
85/*MAKEHEADER PUBLIC ONLY*/
86#include "fac_util.h"
87
88/*MAKEHEADER PUBLIC ONLY*/
89#include "cf_map.h"
90
91/*MAKEHEADER PUBLIC ONLY*/
92#include "cf_reval.h"
93
94/*MAKEHEADER PUBLIC ONLY*/
95#include "fac_sqrfree.h"
96
97/*MAKEHEADER PUBLIC ONLY*/
98#include "gfops.h"
99
100/*MAKEHEADER PUBLIC ONLY*/
101#include "cf_hnf.h"
102
103/*MAKEHEADER PUBLIC ONLY*/
104#include "singext.h"
105
106/*MAKEHEADER PUBLIC ONLY*/
107#include "cf_util.h"
108
109/*MAKEHEADER PUBLIC ONLY*/
110#include "facIrredTest.h"
111
112#ifdef HAVE_BIFAC
113/*MAKEHEADER PUBLIC ONLY*/
114#include "bifac.h"
115#endif /* HAVE_BIFAC */
116
117#endif /* ! INCL_FACTORY_H */
Note: See TracBrowser for help on using the repository browser.