Implemented RI-Reduction (without back propagation).
[libfirm] / pbqp_node_t.h
1 #ifndef KAPS_PBQP_NODE_T_H
2 #define KAPS_PBQP_NODE_T_H
3
4 #include "pbqp_t.h"
5
6 struct pbqp_node {
7         pbqp_edge **edges;
8         vector     *costs;
9         unsigned    bucket_index;
10         unsigned    solution;
11 };
12
13 #endif /* KAPS_PBQP_NODE_T_H */