Use more bucket functions.
[libfirm] / matrix_t.h
1 #ifndef KAPS_MATRIX_T_H
2 #define KAPS_MATRIX_T_H
3
4 #include "pbqp_t.h"
5
6 typedef struct pbqp_matrix pbqp_matrix;
7
8 struct pbqp_matrix {
9         unsigned rows;
10         unsigned cols;
11         num entries[];
12 };
13
14 #endif /* KAPS_MATRIX_T_H */