include/piplib: move private header files to source/
[piplib.git] / source / type.h
blob8a2fb60419a655f425f29d25b73e7782f8c2816a
1 /******************************************************************************
2 * PIP : Parametric Integer Programming *
3 ******************************************************************************
4 * type.h *
5 ******************************************************************************
6 * *
7 * Copyright Paul Feautrier, 1988, 1993, 1994, 1996, 2002 *
8 * *
9 * This is free software; you can redistribute it and/or modify it under the *
10 * terms of the GNU General Public License as published by the Free Software *
11 * Foundation; either version 2 of the License, or (at your option) any later *
12 * version. *
13 * *
14 * This software is distributed in the hope that it will be useful, but *
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY *
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License *
17 * for more details. *
18 * *
19 * You should have received a copy of the GNU General Public License along *
20 * with software; if not, write to the Free Software Foundation, Inc., *
21 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
22 * *
23 * Written by Paul Feautrier *
24 * *
25 ******************************************************************************/
27 #ifndef TYPE_H
28 #define TYPE_H
29 #if defined(__cplusplus)
30 extern "C"
32 #endif
34 /* Modified by Serge Torres to handle very big problems (since 1.3.4 we can put
35 * any value we want: sol_space is allocated dynamically), but it is left by
36 * default to 4096 because of time/space reasons for most people.
37 * #define SOL_SIZE 67108864
39 #define SOL_SIZE 4096
41 extern Entier UN;
42 extern Entier ZERO;
44 #define Pip_True 1
45 #define Pip_False 0
48 #ifdef TC
49 #define DEBUG 8
50 #endif
52 #define Q if(cross_product>=limit)
54 #define MAXCOL 512
55 #define MAXPARM 50
57 #if defined(__cplusplus)
59 #endif
60 #endif /* define _H */