Comments
[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 #ifdef WITH_ILP
17
18 #include "becopyilp_t.h"
19
20 #define DEBUG_LVL 1
21
22 typedef struct _my_env_t {
23         int dummy;
24 } my_env_t;
25
26
27 static void ilp1_build(ilp_env_t *ienv) {
28         ienv->lp = new_lpp(ienv->co->name, lpp_minimize);
29 }
30
31 static void ilp1_apply(ilp_env_t *ienv) {
32
33 }
34
35 int co_solve_ilp1(copy_opt_t *co, double time_limit) {
36         return 1;
37 }
38
39
40 #else /* WITH_ILP */
41
42 static void only_that_you_can_compile_without_WITH_ILP_defined(void) {
43 }
44
45 #endif /* WITH_ILP */