Fixed Win32 DLL support.
[libfirm] / include / libfirm / adt / gaussjordan.h
1 /**
2  * @file
3  * @brief solves a system of linear equations
4  */
5 #ifndef FIRM_ADT_GAUSSJORDAN_H
6 #define FIRM_ADT_GAUSSJORDAN_H
7
8 #include "../begin.h"
9
10 /**
11  * solves a system of linear equations and returns 0 if successful
12  *
13  * @param A       the linear equations as matrix
14  * @param b       the result vector, will contain the result if successful
15  * @param nsize   the size of the equation system
16  */
17 FIRM_API int firm_gaussjordansolve(double *A, double *b, int nsize);
18
19 #include "../end.h"
20
21 #endif