PIPS
transformer_main.c
Go to the documentation of this file.
1 /*
2 
3  $Id: transformer_main.c 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 #ifdef HAVE_CONFIG_H
25  #include "pips_config.h"
26 #endif
27  /* main for transformer package
28  *
29  * Tests link-editing, no more
30  *
31  * Francois Irigoin, 21 April 1990
32  */
33 
34 #include "genC.h"
35 #include "linear.h"
36 #include "ri.h"
37 
38 #include "transformer.h"
39 
41 {
44  transformer t3;
45 
46  t3 = transformer_convex_hull(t1, t2);
47  (void) print_transformer(t3);
48 }
#define print_transformer(t)
Definition: print.c:357
#define transformer_undefined
Definition: ri.h:2847
transformer transformer_convex_hull(transformer t1, transformer t2)
transformer transformer_convex_hull(t1, t2): compute convex hull for t1 and t2; t1 and t2 are slightl...
Definition: convex_hull.c:216
main()
main for transformer package