Started implementing a new PBQP solver, which should solve PBQPs and the problems...
[libfirm] / matrix_t.h
1 #ifndef KAPS_MATRIX_T_H
2 #define KAPS_MATRIX_T_H
3
4 struct matrix;
5 typedef struct matrix matrix;
6
7 struct matrix {
8         int rows;
9         int cols;
10         num entries[];
11 };
12
13 #endif /* KAPS_MATRIX_T_H */