- don't add trivial nodes when using new PBQP solver
[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         unsigned src;                      /* Source index. */
8         unsigned tgt;                      /* Target index. */
9         pbqp_matrix  *costs;                    /* Cost matrix. */
10 };
11
12 #endif /* KAPS_PBQP_EDGE_T_H */