![]() |
Bachelor's degree final project
v1.0
Faculty of Mathematics, University of Barcelona
|
00001 00012 #ifndef LU_MATRIX_H 00013 #define LU_MATRIX_H 00014 00015 #include "permutation.h" 00016 00023 #define WHITOUT_PIVOTING 0 00024 00031 #define PARTIAL_PIVOTING_ROW 1 00032 00039 #define PARTIAL_PIVOTING_COL 2 00040 00047 #define FULL_PIVOTING 3 00048 00049 /* Function prototypes */ 00050 void * lu(size_t m, size_t n, double ** const A, double ** const LU, size_t * const pr, size_t * const pc, double tol); 00051 #endif