Use more bucket functions.
[libfirm] / pbqp_edge_t.h
1 #ifndef KAPS_PBQP_EDGE_T_H
2 #define KAPS_PBQP_EDGE_T_H
3
4 #include "pbqp_t.h"
5
6 struct pbqp_edge {
7         pbqp_node   *src;                  /* Source index. */
8         pbqp_node   *tgt;                  /* Target index. */
9         pbqp_matrix *costs;                /* Cost matrix. */
10         unsigned     bucket_index;         /* Index of edge bucket. */
11 };
12
13 #endif /* KAPS_PBQP_EDGE_T_H */