00001 #ifndef LU_H 00002 #define LU_H 00003 00004 double LU_num_flops(int N); 00005 void LU_copy_matrix(int M, int N, double **lu, double **A); 00006 int LU_factor(int M, int N, double **A, int *pivot); 00007 00008 00009 #endif