Started implementing a new PBQP solver, which should solve PBQPs and the problems...
[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 node. */
8         pbqp_node *tgt;                    /* Target node. */
9         matrix *costs;                     /* Cost matrix. */
10 };
11
12 #endif /* KAPS_PBQP_EDGE_T_H */