- Implement all the state switching stuff needed for efficient fpu mode
[libfirm] / ir / adt / gaussjordan.h
1 #ifndef FIRM_GAUSSJORDAN_H_
2 #define FIRM_GAUSSJORDAN_H_
3
4 /**
5  * solves a system of linear equations and returns 0 if successful
6  *
7  * @param A    the linear equations as matrix
8  * @param b    the result vector, will contain the result if successful
9  */
10 int firm_gaussjordansolve(double *A, double *b, int nsize);
11
12 #endif