PIPS
pip-local.h
Go to the documentation of this file.
1 /*
2 
3  $Id: pip-local.h 23065 2016-03-02 09:05:50Z coelho $
4 
5  Copyright 1989-2016 MINES ParisTech
6 
7  This file is part of PIPS.
8 
9  PIPS is free software: you can redistribute it and/or modify it
10  under the terms of the GNU General Public License as published by
11  the Free Software Foundation, either version 3 of the License, or
12  any later version.
13 
14  PIPS is distributed in the hope that it will be useful, but WITHOUT ANY
15  WARRANTY; without even the implied warranty of MERCHANTABILITY or
16  FITNESS FOR A PARTICULAR PURPOSE.
17 
18  See the GNU General Public License for more details.
19 
20  You should have received a copy of the GNU General Public License
21  along with PIPS. If not, see <http://www.gnu.org/licenses/>.
22 
23 */
24 
25 #define PIP_SOLVE_MIN 0
26 #define PIP_SOLVE_MAX 1
27 #define PIP_SOLVE_INTEGER 1
28 #define PIP_SOLVE_RATIONAL 0
29 
30 #define DFG_MODULE_NAME "DFG"
31 #define MAPPING_MODULE_NAME "MAPPING"
32 #define DIFF_PREFIX "DIFF"
33 #define COEFF_PREFIX "COEFF"
34 
35 #define POSITIVE 1
36 #define NEGATIVE 0
37 
38 #define ADD_ELEMENT_TO_LIST( _list, _type, _element) \
39  (_list = gen_nconc( _list, CONS( _type, _element, NIL)))
40 
41 /* PIP includes */
42 #include "pip__type.h"
43 #include "pip__sol.h"
44 #include "pip__tab.h"
45 
46 /* PIP parser symbols */
47 extern int quayyparse();
48 extern FILE * quayyin;
int quayyparse()
PIP includes.
FILE * quayyin