CMS 3D CMS Logo

LU.h
Go to the documentation of this file.
1 #ifndef LU_H
2 #define LU_H
3 
4 double LU_num_flops(int N);
5 void LU_copy_matrix(int M, int N, double **lu, double **A);
6 int LU_factor(int M, int N, double **A, int *pivot);
7 
8 #endif
N
#define N
Definition: blowfish.cc:9
LU_num_flops
double LU_num_flops(int N)
A
LU_factor
int LU_factor(int M, int N, double **A, int *pivot)
LU_copy_matrix
void LU_copy_matrix(int M, int N, double **lu, double **A)