Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:32:55

0001 #ifndef LU_H
0002 #define LU_H
0003 
0004 double LU_num_flops(int N);
0005 void LU_copy_matrix(int M, int N, double **lu, double **A);
0006 int LU_factor(int M, int N, double **A, int *pivot);
0007 
0008 #endif