Bachelor's degree final project  v1.0
Faculty of Mathematics, University of Barcelona
src/include/LU_matrix.h
Go to the documentation of this file.
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