remove license stuff from files
[libfirm] / ir / kaps / matrix_t.h
1 /*
2  * This file is part of libFirm.
3  * Copyright (C) 2012 University of Karlsruhe.
4  */
5
6 /**
7  * @file
8  * @brief   PBQP matrix data types.
9  * @date    02.10.2008
10  * @author  Sebastian Buchwald
11  */
12 #ifndef KAPS_MATRIX_T_H
13 #define KAPS_MATRIX_T_H
14
15 #include "pbqp_t.h"
16
17 typedef struct pbqp_matrix_t pbqp_matrix_t;
18
19 struct pbqp_matrix_t {
20         unsigned rows;
21         unsigned cols;
22         num entries[];
23 };
24
25 #endif /* KAPS_MATRIX_T_H */