using external lpp now.
[libfirm] / ir / be / becopyilp.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  */
7 #ifdef HAVE_CONFIG_H
8 #include "config.h"
9 #endif
10
11 #ifdef HAVE_ALLOCA_H
12 #include <alloca.h>
13 #endif
14 #ifdef HAVE_MALLOC_H
15 #include <malloc.h>
16 #endif
17
18 #include "irprog.h"
19
20 #include <lpp/lpp.h>
21 #include <lpp/lpp_net.h>
22 #include "xmalloc.h"
23 #include "becopyopt.h"
24 #include "becopystat.h"
25 #include "besched_t.h"
26
27 #define LPP_HOST "i44pc52"
28 #define LPP_SOLVER "cplex"
29
30 #undef DUMP_MPS
31 #define DEBUG_LVL SET_LEVEL_1
32 static firm_dbg_module_t *dbg = NULL;
33
34 #define EPSILON 0.00001
35 #define SLOTS_LIVING 32
36
37 typedef struct _simpl_t {
38         struct list_head chain;
39         if_node_t *ifn;
40 } simpl_t;
41
42 typedef struct _problem_instance_t {
43         const copy_opt_t *co;                   /** the copy_opt problem */
44         /* problem size reduction removing simple nodes */
45         struct list_head simplicials;   /**< holds all simpl_t's in right order to color*/
46         pset *removed;                                  /**< holds all removed simplicial irns */
47         /* lp problem */
48         lpp_t *dilp;                                    /**< problem formulation directly as milp */
49         /* overhead stuff */
50         lpp_t *curr_lp;                                 /**< points to the problem currently used */
51         int cst_counter, last_x_var;
52         char buf[32];
53         int all_simplicial;
54 } problem_instance_t;
55
56 #define is_removed(irn) pset_find_ptr(pi->removed, irn)
57
58 #define is_color_possible(irn,color) arch_reg_is_allocatable(pi->co->chordal_env->arch_env, irn, arch_pos_make_out(0), arch_register_for_index(pi->co->chordal_env->cls, color))
59
60 /*
61  * Some stuff for variable name handling.
62  */
63 #define mangle_cst(buf, prefix, nr) \
64                         snprintf((buf), sizeof(buf), "%c%d", (prefix), (nr))
65
66 #define mangle_var(buf, prefix, node_nr, color) \
67                         snprintf((buf), sizeof(buf), "%c%d_%d", (prefix), (node_nr), (color))
68
69 #define mangle_var_irn(buf, prefix, irn, color) \
70                         mangle_var((buf), (prefix), get_irn_graph_nr(irn), (color))
71
72 #define split_var(var, nnr, col) \
73                         sscanf(var, "x%d_%d", (nnr), (col))
74
75
76 /**
77  * Checks if a node is simplicial in the graph
78  * heeding the already removed nodes.
79  */
80 static INLINE int pi_is_simplicial(problem_instance_t *pi, const if_node_t *ifn) {
81         int i, o, size = 0;
82         if_node_t **all, *curr;
83         all = alloca(ifn_get_degree(ifn) * sizeof(*all));
84
85         /* get all non-removed neighbors */
86         foreach_neighb(ifn, curr)
87                 if (!is_removed(curr))
88                         all[size++] = curr;
89
90         /* check if these form a clique */
91         for (i=0; i<size; ++i)
92                 for (o=i+1; o<size; ++o)
93                         if (!ifg_has_edge(pi->co->chordal_env, all[i], all[o]))
94                                 return 0;
95
96         /* all edges exist so this is a clique */
97         return 1;
98 }
99
100 /**
101  * Iterative finds and 'removes' from the graph all nodes which are
102  * simplicial AND not member of a equal-color-wish
103  */
104 static void pi_find_simplicials(problem_instance_t *pi) {
105         set *if_nodes;
106         if_node_t *ifn;
107         int redo = 1;
108
109         DBG((dbg, LEVEL_2, "Find simlicials...\n"));
110
111         if_nodes = be_ra_get_ifg_nodes(pi->co->chordal_env);
112         while (redo) {
113                 redo = 0;
114                 for (ifn = set_first(if_nodes); ifn; ifn = set_next(if_nodes)) {
115                         ir_node *irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, ifn->nnr);
116                         if (!is_removed(irn) && !is_optimizable(pi->co->chordal_env->arch_env, irn) &&
117           !is_optimizable_arg(pi->co, irn) && pi_is_simplicial(pi, ifn)) {
118                                 simpl_t *s = xmalloc(sizeof(*s));
119                                 s->ifn = ifn;
120                                 list_add(&s->chain, &pi->simplicials);
121                                 pset_insert_ptr(pi->removed, irn);
122                                 redo = 1;
123                                 DBG((dbg, LEVEL_2, " Removed %n %d\n", irn, get_irn_graph_nr(irn)));
124                         }
125                 }
126         }
127         if (set_count(be_ra_get_ifg_nodes(pi->co->chordal_env)) == pset_count(pi->removed))
128                 pi->all_simplicial = 1;
129 }
130
131 /**
132  * Add coloring-force conditions
133  * Matrix A: knapsack constraint for each node
134  */
135 static void pi_add_constr_A(problem_instance_t *pi) {
136         pmap_entry *pme;
137
138         DBG((dbg, LEVEL_2, "Add A constraints...\n"));
139         /* iterate over all blocks */
140         pmap_foreach(pi->co->chordal_env->border_heads, pme) {
141                 struct list_head *head = pme->value;
142                 border_t *curr;
143                 bitset_t *pos_regs = bitset_alloca(pi->co->chordal_env->cls->n_regs);
144
145                 list_for_each_entry_reverse(border_t, curr, head, list)
146                         if (curr->is_def && curr->is_real && !is_removed(curr->irn)) {
147                                 int cst_idx, nnr, col;
148
149                                 nnr = get_irn_graph_nr(curr->irn);
150                                 mangle_cst(pi->buf, 'A', nnr);
151                                 cst_idx = lpp_add_cst(pi->curr_lp, pi->buf, lpp_equal, 1);
152
153                                 // iterate over all possible colors in order
154                                 bitset_clear_all(pos_regs);
155                                 arch_get_allocatable_regs(pi->co->chordal_env->arch_env, curr->irn, arch_pos_make_out(0), pi->co->chordal_env->cls, pos_regs);
156                                 bitset_foreach(pos_regs, col) {
157                                         int var_idx;
158                                         mangle_var(pi->buf, 'x', nnr, col);
159                                         var_idx = lpp_add_var(pi->curr_lp, pi->buf, lpp_binary, 0);
160                                         pi->last_x_var = var_idx;
161                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, var_idx, 1);
162                                 }
163                         }
164         }
165 }
166
167 /**
168  * Checks if all nodes in @p living are live in in block @p block.
169  * @return 1 if all are live in
170  *         0 else
171  */
172 static INLINE int all_live_in(ir_node *block, pset *living) {
173         ir_node *n;
174         for (n = pset_first(living); n; n = pset_next(living))
175                 if (!is_live_in(block, n)) {
176                         pset_break(living);
177                         return 0;
178                 }
179         return 1;
180 }
181
182 /**
183  * Finds cliques in the interference graph, considering only nodes
184  * for which the color @p color is possible. Finds only 'maximal-cliques',
185  * viz cliques which are not contained in another one.
186  * Matrix B: interference constraints using cliques
187  */
188 static void pi_add_constr_B(problem_instance_t *pi, int color) {
189         enum phase_t {growing, shrinking} phase = growing;
190         border_t *b;
191         pmap_entry *pme;
192         pset *living = pset_new_ptr(SLOTS_LIVING);
193
194         DBG((dbg, LEVEL_2, "Add B constraints (col = %d)...\n", color));
195         /* iterate over all blocks */
196         pmap_foreach(pi->co->chordal_env->border_heads, pme) {
197                 ir_node *block = pme->key;
198                 struct list_head *head = pme->value;
199
200                 list_for_each_entry_reverse(border_t, b, head, list) {
201                         const ir_node *irn = b->irn;
202                         if (is_removed(irn) || !is_color_possible(irn, color))
203                                 continue;
204
205                         if (b->is_def) {
206                                 DBG((dbg, LEVEL_2, "Def %n\n", irn));
207                                 pset_insert_ptr(living, irn);
208                                 phase = growing;
209                         } else { /* is_use */
210                                 DBG((dbg, LEVEL_2, "Use %n\n", irn));
211
212                                 /* before shrinking the set, store the current 'maximum' clique;
213                                  * do NOT if clique is a single node
214                                  * do NOT if all values are live_in (in this case they were contained in a live-out clique elsewhere) */
215                                 if (phase == growing && pset_count(living) >= 2 && !all_live_in(block, living)) {
216                                         int cst_idx;
217                                         ir_node *n;
218                                         mangle_cst(pi->buf, 'B', pi->cst_counter);
219                                         cst_idx = lpp_add_cst(pi->curr_lp, pi->buf, lpp_less, 1);
220                                         for (n = pset_first(living); n; n = pset_next(living)) {
221                                                 int var_idx;
222                                                 mangle_var_irn(pi->buf, 'x', n, color);
223                                                 var_idx = lpp_get_var_idx(pi->curr_lp, pi->buf);
224                                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, var_idx, 1);
225                                         }
226                                         pi->cst_counter++;
227                                 }
228                                 pset_remove_ptr(living, irn);
229                                 phase = shrinking;
230                         }
231                 }
232         }
233         assert(0 == pset_count(living));
234         del_pset(living);
235 }
236
237 /**
238  * Generates constraints which interrelate x with y variables.
239  * x1 and x2 have the different colors ==> y_12 = 1
240  */
241 static void pi_add_constr_E(problem_instance_t *pi) {
242         unit_t *curr;
243         bitset_t *root_regs, *arg_regs, *work_regs;
244         int cst_counter = 0;
245         unsigned nregs = pi->co->chordal_env->cls->n_regs;
246         root_regs = bitset_alloca(nregs);
247         arg_regs = bitset_alloca(nregs);
248         work_regs = bitset_alloca(nregs);
249
250         DBG((dbg, LEVEL_2, "Add E constraints...\n"));
251         /* for all roots of optimization units */
252         list_for_each_entry(unit_t, curr, &pi->co->units, units) {
253                 ir_node *root, *arg;
254                 int rootnr, argnr, color;
255                 int y_idx, i;
256                 char buf[32];
257
258                 root = curr->nodes[0];
259                 rootnr = get_irn_graph_nr(root);
260                 bitset_clear_all(root_regs);
261                 arch_get_allocatable_regs(pi->co->chordal_env->arch_env, root, arch_pos_make_out(0), pi->co->chordal_env->cls, root_regs);
262
263                 /* for all arguments of root */
264                 for (i = 1; i < curr->node_count; ++i) {
265                         arg = curr->nodes[i];
266                         argnr = get_irn_graph_nr(arg);
267                         bitset_clear_all(arg_regs);
268                         arch_get_allocatable_regs(pi->co->chordal_env->arch_env, arg, arch_pos_make_out(0), pi->co->chordal_env->cls, arg_regs);
269
270                         /* Introduce new variable and set factor in objective function */
271                         mangle_var(buf, 'y', rootnr, argnr);
272                         y_idx = lpp_add_var(pi->curr_lp, buf, lpp_continous, curr->costs[i]);
273
274                         //BETTER: y vars as binary or continous vars ??
275                         /* set starting value */
276                         //lpp_set_start_value(pi->curr_lp, y_idx, (get_irn_col(pi->co, root) != get_irn_col(pi->co, arg)));
277
278                         /* For all colors root and arg have in common, add 2 constraints to E */
279                         bitset_copy(work_regs, root_regs);
280                         bitset_and(work_regs, arg_regs);
281                         bitset_foreach(work_regs, color) {
282                                 int root_idx, arg_idx, cst_idx;
283                                 mangle_var(buf, 'x', rootnr, color);
284                                 root_idx = lpp_get_var_idx(pi->curr_lp, buf);
285                                 mangle_var(buf, 'x', argnr, color);
286                                 arg_idx = lpp_get_var_idx(pi->curr_lp, buf);
287
288                                 /* add root-arg-y <= 0 */
289                                 mangle_cst(buf, 'E', cst_counter++);
290                                 cst_idx = lpp_add_cst(pi->curr_lp, buf, lpp_less, 0);
291                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, root_idx, 1);
292                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, arg_idx, -1);
293                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
294
295                                 /* add arg-root-y <= 0 */
296                                 mangle_cst(buf, 'E', cst_counter++);
297                                 cst_idx = lpp_add_cst(pi->curr_lp, buf, lpp_less, 0);
298                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, root_idx, -1);
299                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, arg_idx, 1);
300                                 lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
301                         }
302                         /* For all colors root and arg have "disjunct", add 1 constraints to E.
303                          * If root gets a color the arg is not possible to get then they will
304                          * definetly get different colors. So y has to be 1.
305                          * Vice versa for arg.
306                          */
307                         bitset_copy(work_regs, root_regs);
308                         bitset_xor(work_regs, arg_regs);
309                         bitset_foreach(work_regs, color) {
310                                 int root_idx, arg_idx, cst_idx;
311                                 mangle_var(buf, 'x', rootnr, color);
312                                 root_idx = lpp_get_var_idx(pi->curr_lp, buf);
313                                 mangle_var(buf, 'x', argnr, color);
314                                 arg_idx = lpp_get_var_idx(pi->curr_lp, buf);
315
316                                 mangle_cst(buf, 'E', cst_counter++);
317                                 cst_idx = lpp_add_cst(pi->curr_lp, buf, lpp_less, 0);
318                                 if (bitset_is_set(root_regs, color)) {
319                                         /* add root-y <= 0 */
320                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, root_idx, 1);
321                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
322                                 } else {
323                                         assert(bitset_is_set(arg_regs, color) && "bitset_xor is buggy");
324                                         /* add arg-y <= 0 */
325                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, arg_idx, 1);
326                                         lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, -1);
327                                 }
328                         }
329                 }
330         }
331 }
332
333 /**
334  * Matrix S: maximum independent set constraints
335  * Generates lower bound-cuts for optimization units with inner interferences.
336  * Sum(y_{root, arg}, arg \in Args) <= max_indep_set_size - 1
337  */
338 static void pi_add_constr_S(problem_instance_t *pi) {
339         unit_t *curr;
340         int cst_counter = 0;
341         DBG((dbg, LEVEL_2, "Add M constraints...\n"));
342
343         /* for all optimization units */
344         list_for_each_entry(unit_t, curr, &pi->co->units, units) {
345                 const ir_node *root, *arg;
346                 int rootnr, argnr;
347                 int cst_idx, y_idx, i;
348                 char buf[32];
349
350                 if (curr->minimal_costs == 0)
351                         continue;
352
353                 root = curr->nodes[0];
354                 rootnr = get_irn_graph_nr(root);
355                 mangle_cst(buf, 'M', cst_counter++);
356                 cst_idx = lpp_add_cst(pi->curr_lp, buf, lpp_greater, curr->minimal_costs);
357
358                 /* for all arguments */
359                 for (i = 1; i < curr->node_count; ++i) {
360                         arg = curr->nodes[i];
361                         argnr = get_irn_graph_nr(arg);
362                         mangle_var(buf, 'y', rootnr, argnr);
363                         y_idx = lpp_get_var_idx(pi->curr_lp, buf);
364                         lpp_set_factor_fast(pi->curr_lp, cst_idx, y_idx, curr->costs[i]);
365                 }
366         }
367 }
368
369 static void M_constr_walker(ir_node *block, void *env) {
370         problem_instance_t *pi = env;
371         int pos, count, arity, row, col, other_row;
372         ir_node **phis, *phi, *irn, **phi_matrix;
373         pset *done;
374         bitset_t *candidates;
375
376         //TODO
377         return;
378
379         /* Count all phi nodes of this block */
380         for (count=0, irn = sched_first(block); is_Phi(irn); irn = sched_next(irn))
381                 count++;
382
383         /* We at least 2 phi nodes for this class of inequalities */
384         if (count < 2)
385                 return;
386
387         /* Build the \Phi-Matrix */
388         arity = get_irn_arity(sched_first(block));
389         phis = alloca(count * sizeof(*phis));
390         phi_matrix = alloca(count*arity * sizeof(*phi_matrix));
391         candidates = bitset_alloca(count);
392
393         phi = sched_first(block);
394         for (row=0; row<count; ++row) {
395                 phis[row] = phi;
396                 for (col=0; col<arity; ++col)
397                         phi_matrix[row*arity + col] = get_irn_n(phi, col);
398                 phi = sched_next(phi);
399         }
400
401         /* Now find the interesting patterns in the matrix:
402          * All nodes which are used at least twice in a column. */
403         /* columnwise ... */
404         for (col=0; col<arity; ++col) {
405                 done = pset_new_ptr_default();
406                 for (row=0; row<count; ++row) {
407                         irn = phi_matrix[row*arity + col];
408                         /* has the irn already been processed in this col? */
409                         if (pset_find_ptr(done, irn))
410                                 continue;
411                         else
412                                 pset_insert_ptr(done, irn);
413
414                         /* insert irn in candidates */
415                         bitset_clear_all(candidates);
416                         bitset_set(candidates, row);
417                         /* search the irn in the rows below */
418                         for (other_row = row+1; other_row<count; ++other_row)
419                                 if (irn == phi_matrix[other_row*arity + col]) {
420                                         /* found the irn in the same col in another row */
421                                         bitset_set(candidates, other_row);
422                                 }
423
424                         /* now we know all occurences of irn in this col */
425                         if (bitset_popcnt(candidates) < 2)
426                                 continue;
427
428                         /* generate an unequation finally */
429                         //TODO
430
431                 }
432                 del_pset(done); /* clear set for next row */
433         }
434
435 }
436
437 /**
438  * Matrix M: Multi-Arg-Use. Interrelates different \phi-functions
439  * in the same block, iff they use the same arg at the same pos.
440  * Only one of the phis can get the arg.
441  */
442 static void pi_add_constr_M(problem_instance_t *pi) {
443         dom_tree_walk_irg(pi->co->chordal_env->irg, M_constr_walker, NULL, pi);
444 }
445
446 /**
447  * Generate the initial problem matrices and vectors.
448  */
449 static problem_instance_t *new_pi(const copy_opt_t *co) {
450         problem_instance_t *pi;
451         int col;
452
453         DBG((dbg, LEVEL_2, "Generating new instance...\n"));
454         pi = xcalloc(1, sizeof(*pi));
455         pi->co = co;
456         pi->removed = pset_new_ptr_default();
457         INIT_LIST_HEAD(&pi->simplicials);
458         pi->dilp = new_lpp(co->name, lpp_minimize);
459         pi->last_x_var = -1;
460
461         /* problem size reduction */
462         pi_find_simplicials(pi);
463         //BETTER If you wish to see it: dump_ifg_w/o_removed
464         if (pi->all_simplicial)
465                 return pi;
466
467         /* built objective abd constraints */
468         pi->curr_lp = pi->dilp;
469         pi_add_constr_A(pi);
470         for (col = 0; col < pi->co->chordal_env->cls->n_regs; ++col)
471                 pi_add_constr_B(pi, col);
472         pi_add_constr_E(pi);
473         pi_add_constr_S(pi);
474         pi_add_constr_M(pi);
475
476         return pi;
477 }
478
479 /**
480  * Clean the problem instance
481  */
482 static void free_pi(problem_instance_t *pi) {
483         simpl_t *simpl, *tmp;
484
485         DBG((dbg, LEVEL_2, "Free instance...\n"));
486         free_lpp(pi->dilp);
487         list_for_each_entry_safe(simpl_t, simpl, tmp, &pi->simplicials, chain)
488                 free(simpl);
489         del_pset(pi->removed);
490         free(pi);
491 }
492
493 /**
494  * Set starting values for the mip problem according
495  * to the current coloring of the graph.
496  */
497 static void pi_set_start_sol(problem_instance_t *pi) {
498         int i;
499         char var_name[64];
500         DBG((dbg, LEVEL_2, "Set start solution...\n"));
501         for (i=1; i<=pi->last_x_var; ++i) {
502                 int nnr, col;
503                 double val;
504                 /* get variable name */
505                 lpp_get_var_name(pi->curr_lp, i, var_name, sizeof(var_name));
506                 /* split into components */
507                 if (split_var(var_name, &nnr, &col) == 2) {
508                         assert(get_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr)) != -1);
509                         val = (get_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr)) == col) ? 1 : 0;
510                         lpp_set_start_value(pi->curr_lp, i, val);
511                 } else {
512                         fprintf(stderr, "Variable name is: %s\n", var_name);
513                         assert(0 && "x vars always look like this 'x123_45'");
514                 }
515         }
516 }
517
518 /**
519  * Invoke a solver
520  */
521 static void pi_solve_ilp(problem_instance_t *pi) {
522         pi_set_start_sol(pi);
523         lpp_solve_net(pi->curr_lp, LPP_HOST, LPP_SOLVER);
524 }
525
526 /**
527  * Set the color of all simplicial nodes removed form
528  * the graph before transforming it to an ilp.
529  */
530 static void pi_set_simplicials(problem_instance_t *pi) {
531         simpl_t *simpl, *tmp;
532         bitset_t *used_cols = bitset_alloca(arch_register_class_n_regs(pi->co->chordal_env->cls));
533
534         DBG((dbg, LEVEL_2, "Set simplicials...\n"));
535         /* color the simplicial nodes in right order */
536         list_for_each_entry_safe(simpl_t, simpl, tmp, &pi->simplicials, chain) {
537                 int free_col;
538                 ir_node *other_irn, *irn;
539                 if_node_t *other, *ifn;
540
541                 /* get free color by inspecting all neighbors */
542                 ifn = simpl->ifn;
543                 irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, ifn->nnr);
544                 bitset_clear_all(used_cols);
545                 foreach_neighb(ifn, other) {
546                         other_irn = get_irn_for_graph_nr(pi->co->chordal_env->irg, other->nnr);
547                         if (!is_removed(other_irn)) /* only inspect nodes which are in graph right now */
548                                 bitset_set(used_cols, get_irn_col(pi->co, other_irn));
549                 }
550
551                 /* now all bits not set are possible colors */
552                 free_col = bitset_next_clear(used_cols, 0);
553                 assert(free_col != -1 && "No free color found. This can not be.");
554                 set_irn_col(pi->co, irn, free_col);
555                 pset_remove_ptr(pi->removed, irn); /* irn is back in graph again */
556         }
557 }
558
559 /**
560  * Sets the colors of irns according to the values of variables
561  * provided by the solution of the solver.
562  */
563 static void pi_apply_solution(problem_instance_t *pi) {
564         int i;
565         double *sol;
566         lpp_sol_state_t state;
567         DBG((dbg, LEVEL_2, "Applying solution...\n"));
568
569 #ifdef DO_STAT
570         curr_vals[I_ILP_ITER] += lpp_get_iter_cnt(pi->curr_lp);
571         curr_vals[I_ILP_TIME] += lpp_get_sol_time(pi->curr_lp);
572 #endif
573
574         sol = xmalloc((pi->last_x_var+1) * sizeof(*sol));
575         state = lpp_get_solution(pi->curr_lp, sol, 1, pi->last_x_var);
576         if (state != lpp_optimal) {
577                 printf("Solution state is not 'optimal': %d\n", state);
578                 assert(state >= lpp_feasible && "The solution should at least be feasible!");
579         }
580         for (i=0; i<pi->last_x_var; ++i) {
581                 int nnr, col;
582                 char var_name[64];
583
584                 if (sol[i] > 1-EPSILON) { /* split varibale name into components */
585                         lpp_get_var_name(pi->curr_lp, 1+i, var_name, sizeof(var_name));
586                         if (split_var(var_name, &nnr, &col) == 2) {
587                                 DBG((dbg, LEVEL_2, "Irn %n  Idx %d  Var %s  Val %f\n", get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr), i, var_name, sol[i]));
588                                 DBG((dbg, LEVEL_2, "x%d = %d\n", nnr, col));
589                                 set_irn_col(pi->co, get_irn_for_graph_nr(pi->co->chordal_env->irg, nnr), col);
590                         } else
591                                 assert(0 && "This should be a x-var");
592                 }
593         }
594 }
595
596 void co_ilp_opt(copy_opt_t *co) {
597         problem_instance_t *pi;
598
599         dbg = firm_dbg_register("ir.be.copyoptilp");
600         if (!strcmp(co->name, DEBUG_IRG))
601                 firm_dbg_set_mask(dbg, DEBUG_LVL_ILP);
602         else
603                 firm_dbg_set_mask(dbg, DEBUG_LVL);
604
605         pi = new_pi(co);
606         if (!pi->all_simplicial) {
607 #ifdef DUMP_MPS
608                 char buf[512];
609                 snprintf(buf, sizeof(buf), "%s.mps", co->name);
610                 lpp_dump(pi->curr_lp, buf);
611 #endif
612                 pi_solve_ilp(pi);
613                 pi_apply_solution(pi);
614                 pi_set_simplicials(pi);
615         }
616         free_pi(pi);
617 }