Renaming of a type.
[libfirm] / ir / be / becopyilp1.c
1 /**
2  * Author:      Daniel Grund
3  * Date:                17.05.2005
4  * Copyright:   (c) Universitaet Karlsruhe
5  * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
6  * CVS-ID:      $Id$
7  *
8  * ILP formalization using:
9  *   ????
10  */
11
12 #ifdef HAVE_CONFIG_H
13 #include "config.h"
14 #endif /* HAVE_CONFIG_H */
15
16 #include "becopyilp_t.h"
17
18 #define DEBUG_LVL 1
19
20 typedef struct _my_env_t {
21         int dummy;
22 } my_env_t;
23
24
25 static void ilp1_build(ilp_env_t *ienv) {
26         ienv->lp = new_lpp(ienv->co->name, lpp_minimize);
27 }
28
29 static void ilp1_apply(ilp_env_t *ienv) {
30
31 }
32
33 int co_solve_ilp1(copy_opt_t *co, double time_limit) {
34         return 1;
35 }